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

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

        /* HERO SECTION */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-image 1s ease-in-out;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .logo-header {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            max-width: 280px;
            width: 80%;
            z-index: 10;
        }

        .hero-content {
            position: relative;
            z-index: 5;
            text-align: center;
            color: white;
            padding: 20px;
            max-width: 500px;
        }

        .btn-primary {
            background: #049AD1;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 30px;
            cursor: pointer;
            display: block;
            width: 100%;
            max-width: 320px;
            margin: 0 auto 15px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .btn-primary:hover {
            background: #037eac;
        }

        .btn-secondary {
            background: #FFA500;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 30px;
            cursor: pointer;
            display: block;
            width: 100%;
            max-width: 320px;
            margin: 0 auto 20px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .btn-secondary:hover {
            background: #e69500;
        }

        .hero-description {
            font-size: 1rem;
            margin-top: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .hero-description a {
            color: white;
            text-decoration: underline;
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.3);
            color: white;
            font-size: 2rem;
            padding: 15px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s;
        }

        .arrow:hover {
            background: rgba(0, 0, 0, 0.5);
        }

        .arrow-left {
            left: 20px;
        }

        .arrow-right {
            right: 20px;
        }

        /* SECTIONS */
        .section {
            padding: 60px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 15px;
            color: #2c3e50;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #546e7a;
            margin-bottom: 40px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* COMO FUNCIONA */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .step-card {
            background: white;
            padding: 40px 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: #049AD1;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .step-card i {
            font-size: 2.5rem;
            color: #049AD1;
            margin-bottom: 20px;
        }

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

        .step-card p {
            color: #546e7a;
            line-height: 1.6;
        }

        /* CITY CARDS */
        .city-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .city-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .city-card h3 {
            color: #e91e63;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .city-card ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .city-card li {
            padding: 6px 0;
            color: #546e7a;
        }

        .city-card li strong {
            color: #2c3e50;
        }

        .card-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .btn-card {
            padding: 12px 20px;
            border-radius: 25px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-card-primary {
            background: #049AD1;
            color: white;
        }

        .btn-card-primary:hover {
            background: #037eac;
        }

        .btn-card-secondary {
            background: #FFA500;
            color: white;
        }

        .btn-card-secondary:hover {
            background: #e69500;
        }

        /* TESTIMONIOS */
        .testimonios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .testimonio-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .testimonio-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonio-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonio-info strong {
            display: block;
            color: #2c3e50;
            font-size: 1.1rem;
        }

        .testimonio-info span {
            color: #546e7a;
            font-size: 0.9rem;
        }

        .stars {
            color: #FFA500;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .testimonio-text {
            color: #546e7a;
            line-height: 1.7;
            font-style: italic;
        }

        .btn-review {
            display: inline-block;
            background: #049AD1;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: background 0.3s;
        }

        .btn-review:hover {
            background: #037eac;
        }

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

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .faq-item {
            background: #f8f9fa;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #2c3e50;
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: #049AD1;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 20px 20px;
            color: #546e7a;
            line-height: 1.7;
        }

        /* STATS */
        .bg-primary {
            background: linear-gradient(135deg, #049AD1, #0277a8);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
        }

        .stat-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.6rem;
            }

            .hero {
                height: 100vh;
                min-height: 600px;
            }

            .logo-header {
                max-width: 200px;
            }

            .arrow {
                display: none;
            }

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

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

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

        @media (max-width: 480px) {
            .section {
                padding: 40px 15px;
            }

            .btn-primary,
            .btn-secondary {
                font-size: 0.95rem;
                padding: 12px 25px;
            }
        }