/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fefefe 0%, #faf5f3 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23EB7B60;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23EB7B60;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="200" fill="url(%23a)"/></svg>');
    z-index: 1;
}

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

.hero-content {
    opacity: 0;
    transform: translateX(-50px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    text-align: left;
}

.hero-highlights {
    list-style: disc inside;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    color: #128C7E;
    font-size: 1.1rem;
    font-weight: 500;
}
.hero-highlights li {
    margin-bottom: 0.3em;
    line-height: 1.5;
}

.hero-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none !important;
}

.hero-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
}

.operator-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.operator-image:hover {
    transform: scale(1.05);
}

/* Parallax elements */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }
    .hero-content {
        margin-bottom: 16px;
    }
    .hero-cta {
        margin-bottom: 16px;
    }
    .hero-title {
        margin-bottom: 1.2rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
        text-align: left;
    }
    .hero-highlights {
        font-size: 0.75rem;
        text-align: left;
    }
    .whatsapp-btn {
        margin-top: 1.2rem;
        min-width: 90vw;
        max-width: 340px;
        width: 100%;
        font-size: 1.1rem;
    }
    .operator-image {
        max-width: 300px;
    }
}

/* Botão WhatsApp na hero - fundo branco, borda primária */
.whatsapp-btn {
    background: #fff;
    color: #EB7B60;
    font-weight: 700;
    border: 2px solid #EB7B60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(235, 123, 96, 0.08);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, border 0.2s, transform 0.2s;
    text-decoration: none !important;
}
.whatsapp-btn:hover, .whatsapp-btn:focus {
    background: #EB7B60;
    color: #fff;
    border-color: #EB7B60;
    box-shadow: 0 8px 30px rgba(235, 123, 96, 0.18);
    transform: translateY(-2px) scale(1.03);
}
.whatsapp-btn .whatsapp-icon img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 8px;
    width: 24px;
    height: 24px;
    transition: filter 0.2s;
    filter: none;
}
.whatsapp-btn:hover .whatsapp-icon img {
    filter: none;
}
