:root {
    --primary-blue: #1a3a79;
    --secondary-blue: #3a69b4;
    --accent-pink: #c24b67;
    --bg-light: #fdfcfb;
    --bg-white: #ffffff;
    --text-dark: #333333;
    --text-muted: #666666;
    --wa-green: #25d366;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-blue);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 400;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
}

.btn-whatsapp-outline {
    border: 2px solid var(--wa-green);
    color: var(--wa-green);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp-outline:hover {
    background: var(--wa-green);
    color: white;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--accent-pink);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-whatsapp-solid {
    background: var(--bg-white);
    color: var(--wa-green);
    border: 2px solid var(--wa-green);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp-solid:hover {
    background: var(--wa-green);
    color: white;
    transform: scale(1.05);
}

/* Form Container */
.hero-form-container {
    text-align: center;
}

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

.form-header h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.form-header p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.badge {
    background: #fde8ed;
    color: var(--accent-pink);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

.form-card {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-card-header h4 {
    margin-bottom: 5px;
}

.form-card-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

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

.form-group input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 121, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--accent-pink);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #a53d55;
    transform: translateY(-2px);
}

/* Video Section */
.video-section {
    padding: 40px 0;
    text-align: center;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
    transition: var(--transition);
}

.video-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--accent-pink);
}

.play-button::after {
    content: '';
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--accent-pink);
    margin-left: 5px;
    transition: var(--transition);
}

.video-wrapper:hover .play-button::after {
    border-left-color: white;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #eee;
    overflow: hidden;
    border-radius: 15px;
}

.step-card {
    padding: 60px 40px;
    text-align: left;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card-light {
    background: #f2f0e4;
}

.card-pink {
    background: var(--accent-pink);
    color: white;
}

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

.card-pink h3,
.card-blue h3 {
    color: white;
}

.card-pink .step-number,
.card-blue .step-number {
    border-color: rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-light);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-outline {
    border: 1px solid var(--secondary-blue);
    color: var(--secondary-blue);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Teams Section */
.teams-section {
    padding-bottom: 50px;
    background: var(--bg-light);
}

.teams-banner {
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

.teams-banner h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Footer */
.main-footer {
    background: #efeee3;
    padding: 60px 0;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    text-decoration: none;
    color: var(--secondary-blue);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--wa-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: var(--transition);
}

.wa-float:hover {
    transform: scale(1.1);
}

/* Responsive */
/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .container-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-text p {
        margin: 0 auto 30px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}