/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Mantendo Poppins como base, que é similar ao PDF */
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
.section-title {
    font-size: 2.8rem; /* Aumentado para mais impacto */
    font-weight: 800; /* Mais bold */
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50; /* Cor escura para contraste */
}

.section-subtitle {
    font-size: 1.2rem; /* Aumentado levemente */
    text-align: center;
    margin-bottom: 3.5rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid #FFD700; /* Linha dourada para destacar */
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    height: 60px; /* Aumentado o tamanho do logo */
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem; /* Espaçamento maior */
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600; /* Mais bold */
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFD700; /* Dourado no hover */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px; /* Mais padding */
    background: linear-gradient(135deg, #FFFACD 0%, #FFD700 100%); /* Gradiente dourado */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem; /* Título maior e mais impactante */
    font-weight: 900; /* Extra bold */
    color: #2c3e50;
    margin-bottom: 1.8rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem; /* Subtítulo maior */
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem; /* Mais espaço no ícone */
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); /* Mantendo verde WhatsApp */
    color: white;
    padding: 1.2rem 2.5rem; /* Botão maior */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700; /* Mais bold */
    font-size: 1.2rem; /* Texto maior */
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); /* Sombra mais pronunciada */
}

.cta-button:hover {
    transform: translateY(-3px); /* Efeito hover mais notável */
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 550px; /* Imagem um pouco maior */
    height: auto;
    border-radius: 25px; /* Bordas mais arredondadas */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); /* Sombra mais forte */
}

/* About Section */
.about {
    padding: 100px 0; /* Mais padding */
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem; /* Mais espaçamento */
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: left;
}

.about-text p {
    margin-bottom: 1.8rem; /* Mais espaçamento entre parágrafos */
    font-size: 1.15rem; /* Texto um pouco maior */
    line-height: 1.7;
    color: #555;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Bordas mais arredondadas */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); /* Sombra mais forte */
}

/* Services Section */
.services {
    padding: 100px 0; /* Mais padding */
    background: #fdfaf0; /* Fundo creme/amarelo claro */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Ajuste para 3 colunas */
    gap: 2.5rem; /* Mais espaçamento */
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem; /* Mais padding */
    border-radius: 20px; /* Bordas mais arredondadas */
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee; /* Borda sutil */
}

.service-card:hover {
    transform: translateY(-8px); /* Efeito hover mais notável */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.service-icon {
    width: 90px; /* Ícone maior */
    height: 90px; /* Ícone maior */
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Gradiente dourado */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
}

.service-icon i {
    font-size: 2.5rem; /* Ícone maior */
    color: white;
}

.service-card h3 {
    font-size: 1.6rem; /* Título maior */
    color: #2c3e50;
    margin-bottom: 1.2rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Differentials Section */
.differentials {
    padding: 100px 0;
    background: white;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajuste para 4 colunas */
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.differential-card {
    text-align: center;
    padding: 2.5rem;
}

.differential-icon {
    width: 80px; /* Ícone maior */
    height: 80px; /* Ícone maior */
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%); /* Gradiente verde */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
}

.differential-icon i {
    font-size: 2.2rem; /* Ícone maior */
    color: white;
}

.differential-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
}

.differential-card p {
    color: #666;
    line-height: 1.7;
}

.differential-image {
    text-align: center;
    margin-top: 4rem;
}

.diff-img {
    width: 100%;
    max-width: 650px; /* Imagem um pouco maior */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #fdfaf0; /* Fundo creme/amarelo claro */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajuste para 3 colunas */
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1.2rem;
}

.testimonial-author span {
    color: #666;
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Dourado */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-details p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-details a {
    color: #FFD700; /* Dourado */
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
    padding: 3.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Dourado */
    border-radius: 25px;
    color: #2c3e50; /* Texto escuro para contraste */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #444;
}

.contact-cta .cta-button {
    background: white;
    color: #FFD700; /* Dourado */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-cta .cta-button:hover {
    background: #f8f9fa;
    color: #FFA500;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.footer-logo-img {
    height: 50px; /* Logo maior no footer */
    width: auto;
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px; /* Ajuste para o novo header */
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-cta {
        padding: 2.5rem;
    }
    
    .contact-cta h3 {
        font-size: 1.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom styles for a more 



/* Plans Section */
.plans {
    padding: 100px 0;
    background: #fdfaf0; /* Fundo creme/amarelo claro */
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.plan-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
}

.plan-card.featured {
    border: 3px solid #FFD700;
    transform: scale(1.05);
}

.plan-card.featured::before {
    content: "MAIS POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2c3e50;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-card h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.plan-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 2rem;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.plan-card ul li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: #555;
}

.plan-card ul li i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.plan-button {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .cta-button {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.show {
    display: block;
}

/* Responsive adjustments for plans and form */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .plan-card .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .plan-card {
        padding: 2rem;
    }
    
    .plan-card h3 {
        font-size: 1.6rem;
    }
    
    .plan-card .price {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

