/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Primeira Seção - Header */
.header-section {
    background-color: #000000;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
    position: static;
    overflow: hidden;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: brightness(1.1);
}

.main-title {
    font-family: 'Asgaber', serif;
    font-style: italic;
    font-weight: 500;
    color: #f5f5ef;
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #f5f5ef;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Segunda Seção - Botões */
.buttons-section {
    background-color: #f5f5ef;
    padding: 80px 0;
    height: auto;
    display: flex;
    align-items: center;
    position: static;
    overflow: hidden;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.action-button {
    position: relative;
    display: block;
    width: 100%;
    min-height: 250px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #f5f5ef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.action-button:nth-child(1) {
    background-image: url('assets/03_Landscape_Book_Cover_Mockup.jpg');
}

.action-button:nth-child(2) {
    background-image: url('assets/Prancheta1.jpg');
}

.action-button:nth-child(3) {
    background-image: url('assets/Prancheta4.jpg');
}

.button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

.action-button:hover .button-overlay {
    background-color: rgba(84, 75, 29, 0.5);
    backdrop-filter: blur(0px);
}

.action-button:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.button-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
}

.button-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f5f5ef;
}

.button-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #f5f5ef;
    opacity: 0.9;
}

/* Rodapé */
.footer-section {
    background-color: #000000;
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-text {
    color: #f5f5ef;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-text p {
    margin-bottom: 15px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
    filter: brightness(1.1);
}

.back-to-top {
    display: flex;
    justify-content: center;
}

.back-to-top-btn {
    background: linear-gradient(135deg, #544b1d, #6b5f2a);
    color: #f5f5ef;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(84, 75, 29, 0.3);
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(84, 75, 29, 0.4);
    background: linear-gradient(135deg, #6b5f2a, #544b1d);
}

.back-to-top-btn span:first-child {
    font-size: 1.2rem;
    font-weight: bold;
}

.back-to-top-btn span:last-child {
    font-size: 0.8rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .header-section {
        height: 70vh; /* Altura um pouco maior para tablets */
        padding: 40px 0;
    }
    
    .subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .action-button {
        min-height: 180px;
    }
    
    .button-content {
        padding: 40px 25px; /* Aumenta o padding vertical */
    }
    
    .button-content h3 {
        font-size: 1.4rem;
    }
    
    .button-content p {
        font-size: 0.95rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-logo-img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .header-section {
        height: 60vh; /* Altura um pouco maior para mobile */
        padding: 30px 0;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .action-button {
        min-height: 160px; /* Aumenta o comprimento mínimo */
    }
    
    .button-content {
        padding: 30px 20px; /* Ajusta o padding vertical */
    }
    
    .button-content h3 {
        font-size: 1.2rem;
    }
    
    .button-content p {
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

