/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #D4AF37; /* gold color */
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Color Palette */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --dark-blue: #1A1A2E;
    --gold: #D4AF37;
    --navy-blue: #001F3F;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--black) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Geometric overlay for hero section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 20%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.1) 50%, transparent 51%),
        linear-gradient(135deg, transparent 49%, rgba(212, 175, 55, 0.1) 50%, transparent 51%);
    background-size: 100px 100px;
    z-index: 1;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
    max-width: 60%;
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    background: #e6c35a;
}

.shield-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.hero-image {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.zuriel-partnership {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 30px;
    border-top: 1px solid var(--gold);
}

.zuriel-partnership p {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

.zuriel-partnership img {
    height: 50px;
}

/* Sobre Section */
.sobre {
    background: var(--white);
    padding: 100px 0;
}

.sobre h2 {
    color: var(--dark-blue);
    text-align: center;
}

.sobre-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.profile-image {
    flex: 1;
    text-align: center;
}

.profile-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
    border: 5px solid var(--gold);
    object-fit: cover;
}

.bio-text {
    flex: 2;
}

.bio-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

blockquote {
    font-style: italic;
    padding: 20px;
    background: #f8f8f8;
    border-left: 4px solid var(--gold);
    margin: 20px 0;
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.testimonial {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    margin-top: 20px;
}

.testimonial .client {
    font-weight: bold;
    color: #555;
    font-style: normal;
    margin-top: 10px;
}

/* Timeline Styles */
.timeline {
    margin-top: 60px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gold);
}

.timeline h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 20px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 20px);
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 4px var(--dark-blue);
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.timeline-content h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.timeline-content .date {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        max-width: 90%;
    }
}

/* Serviços Section */
.servicos {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    padding: 100px 0;
}

.servicos h2 {
    color: var(--dark-blue);
    text-align: center;
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
    flex-grow: 1;
}

.simular-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    align-self: flex-start;
    margin-top: auto;
}

.simular-btn:hover {
    background: #e6c35a;
    transform: scale(1.05);
}

.zuriel-duo {
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d1b2a 100%);
    color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.duo-content {
    max-width: 900px;
    margin: 0 auto;
}

.zuriel-duo h3 {
    color: var(--gold);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.zuriel-duo p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.duo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.zuriel-logo, .matheus-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zuriel-logo img, .matheus-logo img {
    max-width: 120px;
    max-height: 40px;
}

.matheus-icon {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.connection-arrow {
    font-size: 2rem;
    color: var(--gold);
    animation: pulse 2s infinite;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.benefit-item h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Blog Section */
.blog {
    background: var(--white);
    padding: 100px 0;
}

.blog h2 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 20px;
}

.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-post {
    background: #f8f9fa;
    padding: 0;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-post p {
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-post blockquote {
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
    margin: 15px 0;
    color: var(--dark-blue);
    font-size: 0.95rem;
    align-self: flex-start;
}

.read-more {
    display: inline-block;
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--gold);
}

.blog-cta {
    text-align: center;
    margin-top: 70px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.blog-cta h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.blog-cta p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #555;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button:hover {
    background: #e6c35a;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Depoimentos Section */
.depoimentos {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d1b2a 100%);
    color: var(--white);
    padding: 100px 0;
}

.depoimentos h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-item {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.testimonial-content img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

.testimonial-text p {
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-text .rating {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-text .client-info {
    color: #666;
    font-weight: bold;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-nav .nav-btn {
    pointer-events: auto;
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.slider-nav .nav-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: var(--gold);
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.credential-badge {
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.credential-badge:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slider-nav .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Contato Section */
.contato {
    background: #f8f9fa;
    padding: 100px 0;
}

.contato h2 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 50px;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contato-form-container {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contato-form {
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #e6c35a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contato-info {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contato-info h3 {
    color: var(--dark-blue);
    margin-bottom: 25px;
    text-align: center;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-blue);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateX(5px);
}

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

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--dark-blue), var(--black));
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info {
    margin-bottom: 0;
}

.footer-info h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-info p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-logo {
    margin-top: 15px;
}

.footer-logo img {
    max-width: 150px;
    filter: grayscale(50%) brightness(1.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.footer-social a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 3px 5px;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}

.heart {
    color: var(--gold);
    animation: pulse 1.5s infinite;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-width: 100%;
        justify-content: center;
    }
    
    .sobre-content {
        flex-direction: column;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contato-form-container {
        order: 2;
    }
    
    .contato-info {
        order: 1;
    }
    
    .services-grid,
    .blog-posts {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .zuriel-duo {
        padding: 25px 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        max-width: 90%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .services-grid,
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slider-nav .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        align-items: center;
        justify-content: center;
    }
    
    .zuriel-partnership {
        flex-direction: column;
        gap: 10px;
    }
    
    .duo-visual {
        flex-direction: column;
        gap: 10px;
    }
    
    .connection-arrow {
        transform: rotate(90deg);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .contato,
    .sobre,
    .servicos,
    .blog,
    .depoimentos {
        padding: 60px 0;
    }
    
    .timeline-item {
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .testimonials-slider {
        padding: 20px 15px;
    }
    
    .slider-nav {
        position: static;
        top: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        transform: none;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
    
    .submit-btn {
        padding: 12px 20px;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .whatsapp-button {
        display: block;
        text-align: center;
    }
}

/* Mobile menu for future enhancement */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-width: 100%;
        justify-content: center;
    }
    
    .sobre-content {
        flex-direction: column;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.service-card,
.blog-post,
.testimonial-item {
    animation: fadeIn 1s ease-in-out;
}

/* Particles animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Modal styles for calculator */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: none;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #333;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: var(--dark-blue);
}

.calculator-form {
    margin-top: 20px;
}

.calculator-form .form-group {
    margin-bottom: 15px;
}

.calculator-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--dark-blue);
}

.calculator-form input,
.calculator-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.calculate-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s ease;
}

.calculate-btn:hover {
    background: #e6c35a;
}

.result {
    margin-top: 20px;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 5px;
    border-left: 4px solid #007bff;
}

.savings-result h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.economia-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    margin: 10px 0;
}

.contact-cta {
    background: var(--dark-blue);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s ease;
}

.contact-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* Animation for scroll effects */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
}