/* General Body & Typography */
body {
    font-family: 'Lato', sans-serif;
    color: #2C3E50; /* Azul Marinho Sólido */
    background-color: #ECF0F1; /* Cinza Claro */
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 700; /* Lato Bold */
}

p {
    font-weight: 400; /* Lato Regular */
}

/* AJUSTADO: Largura máxima do conteúdo */
.container {
    width: 80%;
    max-width: 1440px; /* Aumentado para permitir mais colunas e dar mais espaço */
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header & Navigation */
header {
    background-color: #FFFFFF;
    padding: 1rem 0;
    border-bottom: 1px solid #E0E0E0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1440px; /* Alinhando com o container principal */
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
}

.navbar-logo {
    height: 1.2em; /* Ajuste conforme a altura do texto 'Cápsula' */
    vertical-align: middle;
    margin-right: 0.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 50%, #ECF0F1 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23F39C12" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%233498DB" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>') repeat;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-section h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #2C3E50, #3498DB, #F39C12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: slideInDown 1s ease-out;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.hero-section p {
    font-size: 1.3rem;
    color: #7F8C8D;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    animation: slideInUp 1s ease-out 0.3s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.cta-buttons {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 0 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn.primary {
    background: linear-gradient(45deg, #F39C12, #E67E22);
    color: #FFFFFF;
    border: 2px solid transparent;
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    background: linear-gradient(45deg, #E67E22, #F39C12);
}

.btn.secondary {
    background: linear-gradient(45deg, #3498DB, #2980B9);
    color: #FFFFFF;
    border: 2px solid transparent;
}

.btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(45deg, #2980B9, #3498DB);
}

.hero-image-placeholder {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    animation: zoomIn 1s ease-out 0.9s both;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image-placeholder img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #F39C12, #3498DB, #F39C12);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-placeholder:hover::before {
    opacity: 0.3;
}

.hero-image-placeholder:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Efeito de partículas flutuantes */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="particles" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23F39C12" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="150" cy="100" r="1.5" fill="%233498DB" opacity="0.2"><animate attributeName="opacity" values="0.2;0.7;0.2" dur="4s" repeatCount="indefinite"/></circle><circle cx="100" cy="150" r="1" fill="%23E74C3C" opacity="0.25"><animate attributeName="opacity" values="0.25;0.6;0.25" dur="5s" repeatCount="indefinite"/></circle></pattern></defs><rect width="200" height="200" fill="url(%23particles)"/></svg>') repeat;
    pointer-events: none;
    animation: drift 30s linear infinite;
}

@keyframes drift {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #ECF0F1 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23F39C12" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2C3E50, #3498DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-section h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #7F8C8D;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.benefit-item .icon-placeholder {
    transition: transform 0.3s ease;
}

.benefit-item:hover .icon-placeholder {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item h4 {
    color: #2C3E50;
    margin: 1rem 0;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.benefit-item:hover h4 {
    color: #F39C12;
}

.icon-placeholder img {
    margin-bottom: 1rem;
    width: 100px;
    height: 100px;
    object-fit: contain;
}


/* About Section */
.about-section {
    padding: 1rem 0;
    background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
    position: relative;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F39C12, #3498DB, #F39C12);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #F39C12, #3498DB);
    border-radius: 2px;
}

.about-section h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #7F8C8D;
    margin-bottom: 2rem;
    font-style: italic;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-section p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #F39C12;
    opacity: 0.3;
    font-family: serif;
}

.about-section p::after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-size: 4rem;
    color: #3498DB;
    opacity: 0.3;
    font-family: serif;
}

.about-section strong {
    color: #F39C12;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 3px;
    background: rgba(243, 156, 18, 0.1);
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
    padding: 1rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
}


/* Features Section */
.features-section {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: #FFFFFF;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23F39C12" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.features-section h3 {
    text-align: center;
    font-size: 1.3rem;
    color: #ECF0F1;
    margin-bottom: 3rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0; /* Para a animação */
    animation: slideInUp 0.6s ease forwards;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #F39C12;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-item h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-item:hover h4 {
    color: #F39C12;
}

.feature-item p {
    color: #ECF0F1;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Animações escalonadas para os itens */
.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }
.feature-item:nth-child(7) { animation-delay: 0.7s; }
.feature-item:nth-child(8) { animation-delay: 0.8s; }

@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);
    }
}


/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: #ECF0F1;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.pricing-section h3 {
    font-size: 1.5rem;
    color: #7F8C8D;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.pricing-item {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pricing-item.featured {
    border: 3px solid #F39C12;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.pricing-item.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.pricing-item h4 {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
}

.pricing-item .price {
    font-size: 3rem;
    font-weight: 700;
    color: #F39C12;
    margin-bottom: 1rem;
}

.pricing-item .price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #7F8C8D;
}

.pricing-item .details {
    font-size: 1rem;
    color: #3498DB;
    margin-bottom: 1.5rem;
}

.pricing-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
}

.pricing-item ul li {
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    padding-left: 25px;
}

.pricing-item ul li::before {
    content: '✓';
    color: #27AE60; /* Verde */
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pricing-item .btn {
    margin-top: auto; /* Empurra o botão para o final */
    width: 80%;
}


/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0; /* Padding da seção geral de depoimentos */
}

/* NOVO: Container para o Grid de Depoimentos */
.testimonials-grid-container {
    display: grid;
    /* Define o layout de colunas responsivo:
       - auto-fit: Preenche o espaço disponível com o máximo de colunas possível.
       - minmax(300px, 1fr): Cada coluna terá no mínimo 300px e no máximo 1 fração do espaço disponível.
         Ajuste 300px conforme a largura mínima desejada para cada depoimento. */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Espaçamento entre os depoimentos */
    padding: 20px; /* Um padding geral para o grid */
    box-sizing: border-box; /* Garante que padding não adicione largura extra */
    margin: 2rem auto; /* Centraliza o grid */
    max-width: 1440px; /* Alinhando com o container principal */
}

/* Estilo para cada item de depoimento (card) */
.testimonial-item {
    display: flex;
    flex-direction: column; /* Conteúdo interno (citação e autor) empilhado */
    justify-content: space-between; /* Empurra o autor para o fundo do card */

    padding: 25px; /* Padding interno do card */
    background-color: #fff;
    border-radius: 12px; /* Cantos arredondados */
    border-left: 5px solid #F39C12; /* Adicionado borda lateral */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Sombra suave */
    text-align: left; /* Alinha o texto à esquerda (ou center se preferir) */
    height: 100%; /* Garante que o item ocupe 100% da sua célula no grid, para igualar alturas */
    box-sizing: border-box; /* Garante que padding não adicione altura extra */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição para hover */
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Estilo para a citação (texto do depoimento) */
.testimonial-item .quote {
    flex-grow: 1; /* Permite que a citação ocupe o máximo de espaço disponível */
    margin-bottom: 20px; /* Espaço entre a citação e as informações do autor */
    font-size: 1.1em;
    line-height: 1.6;
    color: #2C3E50;
    font-style: italic;
}

/* Estilo para as informações do autor (substitui .credit) */
.testimonial-item .author-info {
    font-weight: 700; /* Negrito para o nome */
    color: #7F8C8D; /* Cor para o texto do autor */
    font-size: 0.9rem;
    text-align: right; /* Alinha as informações do autor à direita */
}

.testimonial-item .author-info .name {
    color: #2C3E50; /* Cor mais escura para o nome do autor */
}

.testimonial-item .author-info .age {
    font-weight: normal; /* Idade normal */
    color: #7F8C8D; /* Mesma cor do resto do texto do autor */
}

/* CTA Section */
.cta-section {
    background-color: #2C3E50;
    color: #FFFFFF;
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: #FFFFFF;
}

.cta-section p {
    color: #ECF0F1;
}

/* Footer */
footer {
    background-color: #34495E;
    color: #ECF0F1;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col .logo {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-col h4 {
    color: #FFFFFF;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    color: #ECF0F1;
    text-decoration: none;
}

/* Destaque especial para o Instagram no footer */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.social-icons a {
    position: relative;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(45deg, #E1306C, #F56040, #FCAF45);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(225, 48, 108, 0.5);
    }
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #E1306C, #F56040, #FCAF45, #E1306C);
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.6);
    animation: none;
}

.social-icons a img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: brightness(1.2) contrast(1.1);
}

.social-icons a:hover img {
    transform: rotate(10deg);
    filter: brightness(1.4) contrast(1.2);
}

/* Texto especial para Instagram */
.footer-col h4 {
    color: #FFFFFF;
    position: relative;
}

.footer-col:nth-child(3) h4::after {
    content: '📸';
    margin-left: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #7F8C8D;
    padding-top: 1rem;
}

/* Hide the hamburger button on larger screens */
.hamburger-button {
    display: none;
}

/* Legal Page styles */
.legal-page {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.legal-page h1 {
    color: #2C3E50;
    margin-bottom: 1rem;
}

.legal-page h2 {
    color: #2C3E50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #F39C12;
    padding-bottom: 0.5rem;
}

.legal-page h3 {
    color: #34495E;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page .last-updated {
    color: #7F8C8D;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page ul {
    margin-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

/* GLOBAL SPACING ADJUSTMENTS - GARANTE FLUXO VISUAL */
.hero-section {
    padding-bottom: 0.5rem;
    padding-top: 2rem; /* Reduz o padding superior da seção hero */
}
.hero-section h1 {
    margin-top: 1rem; /* Reduz a margem superior do h1 */
}

.benefits-section,
.about-section,
.how-it-works-section,
.features-section,
.testimonials-section,
.cta-section,
.pricing-section,
.faq-section { /* ADICIONADO: faq-section para espaçamento global */
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-top: 0; 
    position: relative; /* Para z-index */
    z-index: 1; /* Para evitar sobreposições */
}

/* Ajustes específicos para o espaço entre a imagem hero e a próxima seção */
.hero-image-placeholder {
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

/* Removendo margens entre seções e adicionando margens negativas para aproximar */
.hero-section + section,
section + section {
    margin-top: -0.5rem;
}


/* --- RESPONSIVIDADE GERAL --- */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 1rem 0; /* Ajuste padding do container para mobile */
    }

    /* Navbar/Hamburger related styles */
    nav {
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center;
    }

    nav ul {
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 60px; 
        left: 0;
        width: 100%;
        background-color: #FFFFFF; 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        border-top: 1px solid #E0E0E0;
        z-index: 999; 
    }
    
    nav ul.active {
        display: flex;
    }

    nav ul li {
        text-align: center;
        margin: 0.5rem 0;
    }

    nav ul a {
        display: block; 
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
        transition: background-color 0.3s ease;
    }

    nav ul a:hover {
        background-color: #F8F8F8;
    }

    .hamburger-button {
        display: block; 
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        position: relative; 
        z-index: 1001; 
        width: 40px; 
        height: 40px; 
    }

    .hamburger-icon,
    .hamburger-icon::before,
    .hamburger-icon::after {
        content: '';
        display: block;
        width: 25px;
        height: 3px;
        background-color: #2C3E50; 
        transition: all 0.3s ease;
        position: absolute; 
        left: 50%; 
        transform: translateX(-50%); 
    }

    .hamburger-icon {
        top: 50%;
        transform: translate(-50%, -50%); 
    }

    .hamburger-icon::before {
        top: 0; 
        transform: translateY(-8px) translateX(-50%); 
    }

    .hamburger-icon::after {
        bottom: 0; 
        transform: translateY(8px) translateX(-50%); 
    }

    .hamburger-button.active .hamburger-icon {
        background-color: transparent; 
    }

    .hamburger-button.active .hamburger-icon::before {
        transform: translateY(0) translateX(-50%) rotate(45deg);
    }

    .hamburger-button.active .hamburger-icon::after {
        transform: translateY(0) translateX(-50%) rotate(-45deg);
    }

    /* Hero Section Responsividade */
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        margin: 0.5rem;
        display: block;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-placeholder {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    /* Section Headings Responsividade */
    .benefits-section h2,
    .about-section h2,
    .features-section h2,
    .pricing-section h2,
    .testimonials-section h2,
    .faq-section h2 { /* ADICIONADO: faq-section h2 */
        font-size: 2rem;
    }
    
    .benefits-section h3,
    .features-section h3,
    .pricing-section h3,
    .testimonials-section h3,
    .faq-section h3 { /* ADICIONADO: faq-section h3 */
        font-size: 1.2rem;
    }
    
    /* Benefits/About/Features Items Responsividade */
    .benefit-item,
    .feature-item,
    .pricing-item {
        padding: 1.5rem;
    }
    .about-section p {
        padding: 1.5rem;
        font-size: 1rem;
    }
    .feature-icon {
        font-size: 2.5rem;
    }

    /* Grid Layouts Responsividade */
    .benefits-grid,
    .steps-grid,
    .features-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr; /* Força uma coluna em mobile */
    }
    
    /* NOVO: Grid de Depoimentos em Mobile */
    .testimonials-grid-container {
        grid-template-columns: 1fr; /* Apenas 1 coluna em telas menores */
        gap: 20px; /* Menor espaçamento */
        padding: 15px;
    }
    
    /* Espaçamentos entre seções em mobile */
    .hero-section {
        padding-bottom: 0.25rem;
    }
    
    .benefits-section,
    .how-it-works-section,
    .features-section,
    .testimonials-section,
    .cta-section,
    .pricing-section,
    .faq-section { /* ADICIONADO: faq-section */
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .about-section {
        padding-top: 0.75rem; /* Ajuste fino */
        padding-bottom: 1rem;
    }
    
    .hero-image-placeholder {
        margin-bottom: 0.25rem;
        margin-top: 1rem;
    }
    
    .hero-section + section,
    section + section {
        margin-top: -0.25rem;
    }

    /* Responsividade para o Instagram destacado */
    .social-icons a {
        padding: 0.8rem;
    }
    
    .social-icons a img {
        width: 35px !important;
        height: 35px !important;
    }
}

/* --- FAQ Section Styles (Adicionado ao final do arquivo) --- */
.faq-section {
    padding: 1rem 0;
    background-color: #F8F8F8; /* Um fundo sutil para destacar a seção */
}

.faq-section h2,
.faq-section h3 {
    text-align: center;
    color: #2C3E50;
    margin-bottom: 1.5rem;
}

.faq-section h2 {
    font-size: 2.5rem;
}

.faq-section h3 {
    font-size: 1.5rem;
    color: #7F8C8D;
}

.faq-list {
    max-width: 100%;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
}

.faq-item:last-child {
    border-bottom: none; /* Remove a borda do último item */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C3E50;
    cursor: pointer;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F5F5F5;
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg); /* Gira o '+' para formar um 'x' ou para parecer um '-' */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    background-color: #F9F9F9;
    padding: 0 2rem; /* Initial padding of 0 */
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Um valor grande o suficiente para a maioria das respostas */
    padding: 1.5rem 2rem; /* Padding when active */
}

.faq-answer p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 0;
}

    .access-app-section {
    background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
    padding: 30px 10px;
    text-align: center;
    }

    .access-app-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #2C3E50, #3498DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }
    .access-app-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
    }

    .access-app-section .btn.primary {
    padding: 12px 24px;
    font-size: 1em;
    text-decoration: none;
    }

    .diary-section {
  padding: 20px 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #ECF0F1 100%);
  text-align: center;
}

.diary-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #2C3E50, #3498DB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.diary-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.diary-section .highlight-text {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.diary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.diary-item {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.diary-item:hover {
  transform: translateY(-5px);
}

.icon-placeholder {
  margin-bottom: 15px;
}

.icon-placeholder .icon {
  width: 48px;
  height: 48px;
  stroke: #3498DB;
}

.diary-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2C3E50;
}

.diary-item p {
  font-size: 1rem;
  color: #666;
}

.diary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas para desktop */
  gap: 20px;
  margin-top: 2rem;
}


/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
    }
    .faq-section h2 {
        font-size: 2rem;
    }
    .faq-section h3 {
        font-size: 1.2rem;
    }
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1.5rem;
    }
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    .faq-answer p {
        font-size: 0.95rem;
    }

  .access-app-section {
    background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
    padding: 30px 10px;
    text-align: center;
  }

  .access-app-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #2C3E50, #3498DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .access-app-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
  }

  .access-app-section .btn.primary {
    padding: 12px 24px;
    font-size: 1em;
    text-decoration: none;
  }

  .diary-section {
    padding-top: 20px;
    padding-bottom: 40px;

  }

  .diary-grid {
    grid-template-columns: 1fr; /* 1 coluna em telas menores */
    gap: 30px;
  }

  .diary-item img {
    max-width: 80px;
    margin-bottom: 1rem;
  }

  .diary-item h4 {
    font-size: 1.2rem;
  }

  .diary-item p {
    font-size: 1rem;
    line-height: 1.6;
  }
}