* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(109, 180, 199, 0.9), rgba(0, 0, 0, 0.7)), 
                url('asset/bghero.jpeg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(109, 180, 199, 0.2);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

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

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-logo img {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #6DB4C7;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(109, 180, 199, 0.4);
}

.cta-button:hover {
    background: #5A9FB5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 180, 199, 0.5);
}

/* Section Styles */
section {
    padding: 5rem 8%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #6DB4C7;
    border-radius: 2px;
}

/* Planejamento Section */
.planejamento {
    background: #f9f9f9;
}

.planejamento-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #6DB4C7;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(109, 180, 199, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6DB4C7, #5A9FB5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.closing-text {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-center {
    text-align: center;
}

/* Sobre Section */
.sobre {
    background: white;
}

.sobre-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    background: #f9f9f9;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid #6DB4C7;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 5px 20px rgba(109, 180, 199, 0.15);
}

.service-item i {
    color: #6DB4C7;
    font-size: 2.5rem;
    min-width: 50px;
}

.service-item-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.final-message {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(109, 180, 199, 0.1), rgba(109, 180, 199, 0.05));
    border-radius: 15px;
    line-height: 1.8;
}

/* Prova Social */
.prova-social {
    background: linear-gradient(135deg, #6DB4C7, #5A9FB5);
    color: white;
}

.prova-social .section-title {
    color: white;
}

.prova-social .section-title::after {
    background: white;
}

.prova-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

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

.testimonial-card {
    background: white;
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.quote-icon {
    font-size: 3rem;
    color: #6DB4C7;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-text.collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.testimonial-text.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, white);
}

.read-more-btn {
    background: none;
    border: none;
    color: #6DB4C7;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #5A9FB5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6DB4C7, #5A9FB5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #6DB4C7;
    font-weight: 500;
}

/* Footer CTA */
.footer-cta {
    background: #333;
    color: white;
    text-align: center;
    padding: 4rem 5%;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn-large:hover {
    background: #20BA5A;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn-large i {
    font-size: 2rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BA5A;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }
}