/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    background-color: #ffffff;
    line-height: 1.6;
    font-weight: 300;
}

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

.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #ff6b8b;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Navegação Minimalista */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.logo img {
    height: 48px;
    margin-right: 12px;
    filter: grayscale(100%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 400;
    transition: all 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #ff6b8b;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ff6b8b;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
    padding: 5px;
}

/* Hero Section Minimalista */
.hero {
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2c3e50;
    position: relative;
    margin-top: 70px;
    padding: 0 20px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.7;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Container do slider como fundo */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

/* Slider automático */
.hero-slider {
    width: 400%; /* 4 imagens = 400% */
    height: 100%;
    display: flex;
    animation: slideShow 20s infinite;
}

.hero-slider img {
    width: 25%; /* Cada imagem ocupa 25% (100%/4) */
    height: 100%;
    object-fit: cover;
}

/* Animação do slider */
@keyframes slideShow {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-25%); }
    50%, 70% { transform: translateX(-50%); }
    75%, 95% { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}

/* Garante que o conteúdo fique na frente */
.hero-content {
    position: relative;
    z-index: 2; /* Maior que o fundo */
}

/* Overlay para melhor contraste (opcional) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Branco semi-transparente */
    z-index: 1; /* Entre o fundo e o conteúdo */
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 16px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s;
    border: 1px solid #2c3e50;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    color: #ff6b8b;
    border-color: #ff6b8b;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: left 0.3s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

/* Agenda Minimalista */
.agenda-card {
    background-color: #f8f9fa;
    border-radius: 0;
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.agenda-icon {
    font-size: 2.5rem;
    color: #ff6b8b;
    margin-bottom: 30px;
}

.agenda-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #2c3e50;
    opacity: 0.8;
}

.agenda-date {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ff6b8b;
    margin: 30px 0;
    letter-spacing: 5px;
    font-family: 'Playfair Display', serif;
}

.agenda-text {
    color: #2c3e50;
    opacity: 0.6;
    margin-top: 25px;
    font-weight: 300;
}

.btn-encomendar {
   padding-top: 20px;
    text-align: center;
}

/* Layout de Conteúdo Minimalista */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reverse {
    direction: rtl;
}

.reverse > * {
    direction: ltr;
}

.content-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 400;
    line-height: 1.2;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
    hyphens: auto;
}

@media (max-width: 768px) {
    .content-text p {
        text-align: left;
    }
}

#sobre .content-image img {
    width: 100%;
    max-width: 420px;   /* controla o “tamanho máximo” */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 25%;
    max-width: 480px;
}



.content-image {
    border-radius: 24px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    display: block;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.content-image:hover img {
    transform: scale(1.02);
}

.features {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.feature:last-child {
    border-bottom: none;
}

.feature i {
    color: #ff6b8b;
    font-size: 1.2rem;
    margin-right: 15px;
    width: 24px;
}

/* cerimonia Especiais Minimalista */
.cerimonia-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.cerimonia-categoria {
    background-color: transparent;
    padding: 0;
}

.cerimonia-categoria h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.cerimonia-categoria h3 i {
    margin-right: 12px;
    color: #ff6b8b;
}

.cerimonia {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.05);
}

.cerimonia:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cerimonia-emoji {
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
    width: 40px;
}

.cerimonia p {
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.7;
}

.cerimonia strong {
    font-weight: 500;
    color: #2c3e50;
}

/* Designs Minimalista */
.section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.2rem;
    color: #2c3e50;
    opacity: 0.7;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.design-card {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.design-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b8b;
}

.design-img {
    height: 600px;
    overflow: hidden;
}

.design-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.design-card:hover .design-img img {
    transform: scale(1.05);
}

.design-card h3 {
    padding: 25px 25px 10px;
    color: #2c3e50;
    font-weight: 400;
    font-size: 1.4rem;
}

.design-card p {
    padding: 0 25px 25px;
    color: #2c3e50;
    opacity: 0.7;
    font-weight: 300;
}



/* Botão Ver Mais */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: transparent;
    border: 2px solid #ff6b8b;
    color: #ff6b8b;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
}

.load-more-btn:hover {
    background-color: #ff6b8b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 139, 0.2);
}

.load-more-btn.hidden {
    display: none;
}

.load-more-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

.load-more-btn svg {
    transition: transform 0.3s;
}

.load-more-btn:hover svg {
    transform: translateY(3px);
}



/* Tradição Minimalista */
.tradicao-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.tradicao-icon {
    font-size: 2.5rem;
    color: #ff6b8b;
    margin-bottom: 30px;
}

.tradicao-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.8;
}

/* Como Encomendar Minimalista */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.step {
    background-color: transparent;
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(44, 62, 80, 0.1);
    transition: all 0.3s;
}

.step:hover {
    border-color: #ff6b8b;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: #ff6b8b;
    border-radius: 0;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 25px;
    border: 1px solid #ff6b8b;
}

.step h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 400;
    font-size: 1.3rem;
}

.step p {
    color: #2c3e50;
    opacity: 0.7;
    font-weight: 300;
    line-height: 1.7;
}

/* Valores Simplificado */
.valores-section {
    padding: 40px 20px;
    text-align: center;
}

.valores-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.incluso-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 400;

}


.valores-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto 30px;
}

.valor-card {
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 8px;
    padding: 25px 20px;
    background: white;
    transition: transform 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b8b;
}

.valor-tamanho {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 400;
    margin-bottom: 10px;
}

.valor-preco {
    font-size: 2rem;
    color: #ff6b8b;
    font-weight: 500;
}

.frete-info {
    font-weight: 400;
    color: #2c3e50;
    font-size: 1rem;
    opacity: 0.8;
    padding-top: 20px;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    margin-top: 20px;
}

.frete-info i {
    margin-right: 10px;
    color: #ff6b8b;
}


/* Responsivo para desktop */
@media (min-width: 768px) {
    .valores-cards {
        flex-direction: row;
        justify-content: center;
        max-width: 600px;
    }
    
    .valor-card {
        flex: 1;
        max-width: 250px;
    }
}

/* Depoimentos Minimalista */
.depoimentos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.depoimento {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(44, 62, 80, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.depoimento:hover {
    border-color: #ff6b8b;
}

.depoimento-img {
    height: 220px;
    overflow: hidden;
}

.depoimento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.depoimento:hover .depoimento-img img {
    transform: scale(1.05);
}

.depoimento-text {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.depoimento-text p {
    font-style: normal;
    margin-bottom: 25px;
    flex-grow: 1;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.7;
}

.depoimento-text h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 1.1rem;
}

.depoimento-text span {
    color: #2c3e50;
    opacity: 0.6;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Instagram Minimalista */
.instagram-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.instagram-icon {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.instagram-container p {
    opacity: 0.8;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.7;
}

.instagram-btn {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 16px 35px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    margin-top: 10px;
    transition: all 0.3s;
    border: 1px solid #2c3e50;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.instagram-btn:hover {
    color: #ffffff;
    border-color: #ff6b8b;
}

.instagram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ff6b8b;
    transition: left 0.3s;
    z-index: -1;
}

.instagram-btn:hover::before {
    left: 0;
}

.instagram-btn i {
    margin-right: 10px;
}

/* Contato Minimalista */
.contato-container {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    justify-content: center;
}

.contato-info h3, .contato-form h3 {
    margin-bottom: 25px;
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
}

.contato-info p {
    opacity: 0.8;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.7;
    text-align: center;
}

.contato-detalhes {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}



.contato-item i {
    font-size: 2rem;
    color: #ff6b8b;
    margin-right: 20px;
    width: 24px;
    margin-top: 5px;
}

.whatsapp-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.2rem;
    position: relative;
}

.whatsapp-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ff6b8b;
    transition: width 0.3s;
}

.whatsapp-link:hover::after {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(44, 62, 80, 0.2);
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: transparent;
    color: #2c3e50;
    transition: all 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ff6b8b;
    background-color: rgba(255, 107, 139, 0.03);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #2c3e50;
    opacity: 0.5;
}

.submit-btn {
    background-color: transparent;
    color: #2c3e50;
    border: 1px solid #2c3e50;
    padding: 18px 35px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    color: #ffffff;
    border-color: #ff6b8b;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ff6b8b;
    transition: left 0.3s;
    z-index: -1;
}

.submit-btn:hover::before {
    left: 0;
}

/* Rodapé Minimalista */
.footer {
    background-color: #f5f5f5;
    padding: 20px 0;
}

.footer p {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: block;
    }
    
    .hero {
        margin-top: 70px;
        height: 90vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .agenda-date {
        font-size: 2.5rem;
    }
}

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

.animate {
    animation: fadeInUp 0.6s ease forwards;
}