/* Estilos gerais para o site FaximSrt - Otimizado para Mobile e Airbnb */

:root {
    --primary-color: #3B82F6;
    --primary-dark: #1D4ED8;
    --primary-light: #DBEAFE;
    --secondary-color: #2196F3;
    --text-color: #333333;
    --text-light: #757575;
    --background-color: #FFFFFF;
    --background-light: #F5F5F5;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --error-color: #F44336;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px 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: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
    /* Melhor legibilidade para textos longos */
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

.logo {
    margin-right: 20px;
    /* Afastando a logo dos textos */
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    /* Ajustando altura e preservando proporção da logo sem distorção */
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    /* Aumentado para melhor toque */
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 15px;
    min-width: 140px;
    /* Garantir largura mínima */
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    /* Aumentado para dar mais espaço */
}

.section-header h2 {
    font-size: 28px;
    /* Ajustado para mobile */
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    /* Melhor para títulos longos */
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    /* Aumentado para acomodar textos mais longos */
    margin: 0 auto;
    line-height: 1.6;
}

/* Estilos do cabeçalho e navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 4px 0;
    /* Reduzido ainda mais para diminuir a altura do header */
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 12px 20px;
    /* Aumentado para melhor toque */
    display: block;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: var(--background-light);
}

.buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
}

.buttons.active {
    display: flex;
}

.hamburger {
    display: flex;
    /* Mostrado por padrão em mobile */
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Estilos da seção hero */
.hero {
    padding: 100px 0 80px;
    /* Ajustado padding top para header menor */
    background-image: url('./images/hero-img.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    width: 100%;
}

.hero-content h1 {
    font-size: 32px;
    /* Ajustado para mobile com texto longo */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    margin-top: 20px;
    line-height: 1.7;
    /* Melhor legibilidade para texto longo */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive improvements for stat cards */
@media (max-width: 480px) {
    .hero-stats {
        gap: 15px;
        margin-top: 80px;
        padding: 0 10px;
    }

    .stat {
        min-width: 120px;
        max-width: 140px;
        padding: 8px 15px;
        height: 70px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-icon {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

.stat {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
    text-align: center;
    width: 160px;
    height: 80px;
    border-left: 3px solid var(--primary-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

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

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

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.stat-icon {
    margin-bottom: 6px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.stat:hover .stat-icon {
    transform: scale(1.05);
    color: white;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: lowercase;
    font-weight: 500;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hero-image {
    flex: 1;
    text-align: center;
    width: 100%;
}

.hero-image img {
    max-width: 40%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0 auto;
}

/* Estilos da seção como funciona */
.how-it-works {
    padding: 50px 0;
    background-color: white;
}

.steps {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    /* Aumentado para dar mais espaço entre os passos */
}

.step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    /* Aumentado padding */
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover::before {
    opacity: 1;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

.step-icon {
    width: 70px;
    /* Aumentado */
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 30px;
    /* Aumentado */
    color: var(--primary-color);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.step:hover h3 {
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    max-width: 280px;
    /* Limitar largura para melhor legibilidade */
    margin: 0 auto;
}

/* Estilos da seção recursos */
.features {
    padding: 10px 0;
    background-color: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px 30px;
    /* Aumentado padding */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    /* Aumentado */
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

.feature-icon i {
    font-size: 28px;
    /* Aumentado */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature:hover h3 {
    color: var(--primary-color);
}

.feature p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature:hover p {
    color: var(--text-color);
}

/* Estilos da seção preços */
.pricing {
    padding: 80px 0;
    background-color: white;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Aumentado */
    align-items: stretch;
}

.pricing-card {
    background-color: var(--background-light);
    padding: 30px 25px;
    /* Aumentado padding */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.pricing-table-wrapper {
    overflow-x: auto;
    /* Permitir scroll horizontal em tabelas */
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    /* Ajustado para mobile */
}

.pricing-table th,
.pricing-table td {
    padding: 12px 8px;
    /* Ajustado para mobile */
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background-color: var(--primary-light);
    font-weight: 600;
    color: var(--primary-dark);
}

.pricing-table td {
    color: var(--text-color);
}

.pricing-table tr:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 12px 0;
    /* Aumentado */
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    line-height: 1.5;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Estilos da seção telas do app */
.app-screens {
    padding: 60px 0;
    background-color: var(--background-light);
}

.screens-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.screen {
    flex: 0 0 70%;
    max-width: 220px;
    text-align: center;
    scroll-snap-align: center;
}

.screen img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 15px;
    /* Aumentado */
}

.screen p {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: var(--text-color);
}

/* Estilos da seção download */
.download {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

.download .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.download-content {
    flex: 1;
    width: 100%;
}

.download-content h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.download-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.app-button {
    display: inline-block;
    transition: var(--transition);
}

.app-button:hover {
    transform: scale(1.05);
}

.app-button img {
    height: 50px;
    max-width: 150px;
}

.download-image {
    flex: 1;
    text-align: center;
    width: 100%;
}

.download-image img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
}
.form-divider {
    text-align: center;
    margin: 25px 0;
    color: var(--text-light);
}

.form-divider span {
    display: inline-block;
    position: relative;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-divider span::before,
.form-divider span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: var(--border-color);
}

.form-divider span::before {
    right: 100%;
    margin-right: 15px;
}

.form-divider span::after {
    left: 100%;
    margin-left: 15px;
}

.form-divider p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.whatsapp-button {
    display: flex; /* Para alinhar ícone e texto */
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none; /* Garantir que não tenha sublinhado */
}

.whatsapp-button:hover {
    background-color: #1DAA50; /* Tom mais escuro para hover */
    color: #fff;
}

.whatsapp-button i {
    margin-right: 10px; /* Espaço entre o ícone e o texto */
    font-size: 20px; /* Tamanho do ícone */
}
/* Estilos da seção contato */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    flex: 1;
    width: 100%;
}

.contact-item {
    margin-bottom: 30px;
    /* Aumentado */
    text-align: center;
}

.contact-item i {
    font-size: 24px;
    /* Aumentado */
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

/* Estilos do rodapé */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 60px 0 25px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.footer-section ul {
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 13px;
}

/* Media Queries para telas maiores */
/* Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 18px;
        max-width: 800px;
        /* Aumentado para textos mais longos */
    }

    .navbar {
        padding: 6px 0;
        /* Reduzido ainda mais para tablet */
    }

    .logo h1 {
        font-size: 28px;
    }

    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        gap: 30px;
    }

    .nav-links a {
        padding: 0;
        display: inline;
    }

    .nav-links a:hover {
        background-color: transparent;
    }

    .buttons {
        display: flex;
        flex-direction: row;
        padding: 0;
        margin-left: 30px;
        gap: 10px;
    }

    .hero {
        padding: 120px 0 120px;
        /* Ajustado padding top para header menor em desktop */
        text-align: left;
    }

    .hero .container {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 42px;
        /* Ajustado para acomodar texto longo */
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 550px;
        /* Ajustado */
        margin-left: 0;
        margin-right: 0;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 20px;
        justify-content: flex-start;
    }

    .hero-image img {
        max-width: 60%;
    }

    .how-it-works {
        padding: 120px 0;
    }

    .steps {
        flex-direction: row;
        gap: 30px;
    }

    .step {
        padding: 35px 25px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .step-icon i {
        font-size: 36px;
    }

    .step h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .step p {
        font-size: 16px;
        max-width: none;
        /* Remover limitação em tablet */
    }

    .features {
        padding: 120px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .feature {
        padding: 35px 30px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 0 6px 24px rgba(59, 130, 246, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 25px 50px rgba(59, 130, 246, 0.18), 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
        background: linear-gradient(135deg, var(--primary-light) 0%, rgba(59, 130, 246, 0.1) 100%);
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
    }

    .feature-icon i {
        font-size: 28px;
    }

    .feature h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature p {
        font-size: 16px;
    }

    .pricing {
        padding: 120px 0;
    }

    .pricing-content {
        flex-direction: row;
        gap: 50px;
        align-items: flex-start;
    }

    .pricing-card {
        padding: 40px 35px;
        flex: 1;
    }

    .pricing-card h3 {
        font-size: 24px;
        margin-bottom: 25px;
        text-align: left;
    }

    .pricing-table {
        font-size: 15px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 15px 12px;
    }

    .services-list li {
        padding: 15px 0;
        padding-left: 30px;
        font-size: 16px;
    }

    .app-screens {
        padding: 80px 0;
    }

    .screens-slider {
        gap: 30px;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: -30px;
        margin-right: -30px;
    }

    .screen {
        flex-basis: auto;
    }

    .screen p {
        font-size: 16px;
    }

    .download {
        padding: 120px 0;
    }

    .download .container {
        flex-direction: row;
        gap: 60px;
        text-align: left;
    }

    .download-content h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .download-content p {
        font-size: 18px;
        margin-bottom: 35px;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .app-buttons {
        flex-direction: row;
        gap: 25px;
        justify-content: flex-start;
    }

    .app-button img {
        height: 60px;
        max-width: none;
    }

    .download-image img {
        max-width: 100%;
    }

    .contact {
        padding: 120px 0;
    }

    .contact-content {
        flex-direction: row;
        gap: 60px;
    }

    .contact-item {
        text-align: left;
        margin-bottom: 35px;
    }

    .contact-item i {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .contact-item h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .contact-item p {
        font-size: 16px;
    }

    footer {
        padding: 100px 0 35px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        margin-bottom: 60px;
        gap: 50px;
    }

    .footer-section h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-section p {
        font-size: 16px;
        max-width: 350px;
        margin: 0;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        font-size: 16px;
    }

    .footer-bottom {
        padding-top: 35px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
        /* Tamanho maior para desktop */
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .step p {
        max-width: 300px;
        /* Restaurar limitação em desktop para melhor legibilidade */
        margin: 0 auto;
    }
}

/* Estilos adicionais para melhor acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Melhorias para toque em dispositivos móveis */
@media (hover: none) and (pointer: coarse) {
    .btn {
        padding: 14px 26px;
        /* Aumentar área de toque */
    }

    .nav-links a {
        padding: 15px 20px;
        /* Aumentar área de toque */
    }

    .hamburger {
        padding: 10px;
        /* Aumentar área de toque */
    }

    .feature:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .feature-icon:hover {
        transform: none;
        box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
    }
}

/* Seção Lista de Espera em estilo banner - AJUSTADO CONFORME IMAGEM */
.waitlist {
    padding: 100px 0;
    background: linear-gradient(135deg, #8f94fa 0%, #3300ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.waitlist .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    flex-wrap: wrap;
}

/* Coluna Esquerda */
.waitlist-content {
    flex: 1;
    min-width: 320px;
}

.waitlist-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.waitlist-content p {
    font-size: 18px;
    color: #f0f0f0;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 30px;
}

/* Lista de vantagens */
.waitlist-benefits {
    margin-top: 30px;
}

.waitlist-benefits h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.waitlist-benefits ul {
    list-style: none;
    padding: 0;
}

.waitlist-benefits ul li {
    color: #f0f0f0;
    font-size: 16px;
    margin-bottom: 8px;
    padding-left: 0;
}

/* Formulário (Coluna Direita) - AJUSTADO CONFORME IMAGEM */
.waitlist-form {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    max-width: 420px;
    min-width: 300px;
}

/* Toggle de tipo de usuário - CONFORME IMAGEM */
.user-type-toggle {
    margin-bottom: 25px;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cfd0d0;
    border-radius: 50px;
    padding: 4px;
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.toggle-label {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    z-index: 2;
    position: relative;
}

.toggle-label.active {
    color: #fff;
}

.toggle-switch {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #4285f4 0%, #3b82f6 100%);
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 1;
}

.toggle-switch.professional {
    left: calc(50% + 4px);
}

/* Campos do formulário - CONFORME IMAGEM */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #495057;
}

.form-group input::placeholder {
    color: #adb5bd;
    font-size: 14px;
}

.form-group input:focus {
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
    outline: none;
    background-color: #fff;
}

/* Botão principal - CONFORME IMAGEM */
.waitlist-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #4285f4 0%, #3b82f6 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.waitlist-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.waitlist-form .btn:active {
    transform: translateY(0);
}

/* Mensagem de feedback do formulário */
.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsivo */
@media (max-width: 900px) {
    .waitlist {
        padding: 60px 0;
        min-height: auto;
    }
    
    .waitlist .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .waitlist-content h2 {
        font-size: 28px;
    }

    .waitlist-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .waitlist-form {
        margin: 0 auto;
        padding: 30px;
    }
    
    .toggle-container {
        max-width: 280px;
    }
}

/* Responsividade para desktop */
@media (min-width: 768px) {
    .waitlist .container {
        flex-direction: row;
        align-items: center;
    }

    .waitlist-content {
        text-align: left;
    }

    .waitlist-content h2 {
        font-size: 36px;
    }

    .waitlist-form {
        margin-bottom: 30px;
    }

    .waitlist-benefits {
        margin: 0;
    }
}
