/* Global Styles */
:root {
    /* Cores principais do dashboard */
    --primary-color: #4e73df;    /* Azul principal */
    --secondary-color: #858796;  /* Cinza escuro */
    --accent-color: #1cc88a;     /* Verde */
    --accent-secondary: #f6c23e; /* Amarelo */
    --accent-tertiary: #e74a3b;  /* Vermelho */
    --accent-quaternary: #36b9cc; /* Azul claro */
    
    /* Cores de texto */
    --text-color: #5a5c69;       /* Cinza escuro do texto */
    --text-light: #858796;       /* Cinza mais claro */
    --text-lighter: #b7b9cc;     /* Cinza bem claro */
    
    /* Cores de fundo */
    --background-light: #f8f9fc;  /* Fundo claro do dashboard */
    --background-lighter: #ffffff; /* Branco puro */
    --background-dark: #5a5c69;   /* Fundo escuro */
    
    /* Cores de borda */
    --border-color: #e3e6f0;     /* Borda clara */
    --border-dark: #dddfeb;       /* Borda um pouco mais escura */
    
    /* Cores de destaque */
    --success: #1cc88a;          /* Verde de sucesso */
    --warning: #f6c23e;          /* Amarelo de alerta */
    --danger: #e74a3b;           /* Vermelho de erro */
    --info: #36b9cc;             /* Azul de informação */
    
    --white: #ffffff;            /* Branco puro */
    --black: #000000;            /* Preto puro */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    overflow-x: hidden;
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

h1 { font-size: 1.802rem; }
h2 { font-size: 1.602rem; }
h3 { font-size: 1.424rem; }
h4 { font-size: 1.266rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (min-width: 768px) {
    h1 { font-size: 2.488rem; }
    h2 { font-size: 2.074rem; }
    h3 { font-size: 1.728rem; }
    h4 { font-size: 1.44rem; }
    h5 { font-size: 1.2rem; }
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.35rem;
    transition: all 0.15s ease-in-out;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #2e59d9;
    border-color: #2653d4;
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(78, 115, 223, 0.25);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
    margin-left: 0.5rem;
}

.btn-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(108, 117, 125, 0.25);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    color: var(--text-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 30px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-top: 2rem;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    animation: float 6s ease-in-out infinite;
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.03) 0%, rgba(28, 200, 138, 0.03) 100%);
    z-index: 0;
    opacity: 0.5;
}

.features .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .features {
        padding: 5rem 0;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .features {
        padding: 4rem 0;
    }
    
    .features .section-header {
        margin-bottom: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 3.5rem 0;
    }
    
    .features .section-header {
        margin-bottom: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: left;
    box-shadow: 0 0.15rem 0.5rem 0 rgba(58, 59, 69, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.15);
    border-color: rgba(78, 115, 223, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--success);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.feature-card:hover::before {
    width: 6px;
}

.feature-card h3 {
    margin: 0 0 1rem 0;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    padding-bottom: 0.75rem;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-quaternary));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 60px;
}

.feature-card p {
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    flex-grow: 1;
}

.feature-card .btn {
    align-self: flex-start;
    margin-top: auto;
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.1) 0%, rgba(78, 115, 223, 0.05) 100%);
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0.25rem 0.5rem 0 rgba(58, 59, 69, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card .icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-quaternary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .icon {
    color: white;
    background: transparent;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0.5rem 1rem 0 rgba(58, 59, 69, 0.15);
}

.feature-card:hover .icon::before {
    opacity: 1;
}

.feature-card .icon i {
    position: relative;
    z-index: 1;
}

.feature-card:hover .icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--background-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(78, 115, 223, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(28, 200, 138, 0.03) 0%, transparent 20%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits .section-title {
    margin-bottom: 3.5rem;
    text-align: center;
}

.benefits .section-title::after {
    background-color: var(--primary-color);
}

.benefits-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefits-text {
    flex: 1;
    min-width: 300px;
}

.benefits-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    transition: transform 0.3s ease;
}

.benefits-image img:hover {
    transform: translateY(-5px);
}

.benefit-item {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.15rem 0.5rem 0 rgba(58, 59, 69, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--success);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.15);
}

.benefit-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    margin-right: 1.25rem;
    background-color: rgba(28, 200, 138, 0.1);
    color: var(--success);
    border-radius: 0.5rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.benefit-item:hover i {
    background-color: var(--success);
    color: white;
    transform: scale(1.1);
}

.benefit-content {
    flex: 1;
}

.benefit-item h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Diferentes cores para os itens de benefício */
.benefit-item:nth-child(2) {
    border-left-color: var(--accent-quaternary);
}

.benefit-item:nth-child(2) i {
    background-color: rgba(54, 185, 204, 0.1);
    color: var(--accent-quaternary);
}

.benefit-item:nth-child(2):hover i {
    background-color: var(--accent-quaternary);
    color: white;
}

.benefit-item:last-child {
    border-left-color: var(--warning);
}

.benefit-item:last-child i {
    background-color: rgba(246, 194, 62, 0.1);
    color: var(--warning);
}

.benefit-item:last-child:hover i {
    background-color: var(--warning);
    color: white;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #224abe 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
    border-radius: 0.5rem;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 2.2rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.cta .btn {
    font-size: 1rem;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.1);
    text-decoration: none;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #bac8f3;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-quaternary));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: #5a5c69;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

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

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--white);
    z-index: 1;
}

.carousel-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fc;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
}

.carousel-controls {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    z-index: 10;
}

.carousel-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.carousel-control:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d3e2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    margin-top: 4px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 20px;
        font-size: 25px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .benefits-content {
        gap: 3rem;
    }
    
    .benefits-text {
        flex: 1;
    }
    
    .benefits-image {
        flex: 1;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 100px 0 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .benefits-content {
        flex-direction: column;
    }
    
    .benefits-text, .benefits-image {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .benefits-image {
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }

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

    .nav-links a {
        margin: 15px 0;
        font-size: 1.2rem;
    }

    .mobile-menu {
        display: block;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .cta h2 {
        font-size: 1.8rem;
    }
}
