        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red-primary: #C41E3A;
            --red-dark: #8B1428;
            --red-light: #E63946;
            --white: #FFFFFF;
            --gray-light: #F5F5F5;
            --gray-dark: #333333;
            --accent-gold: #D4AF37;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--gray-dark);
            background-color: var(--gray-light);
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            color: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-header {
            height: 90px;
            display: flex;
            align-items: center;
        }

        .logo-header img {
            max-height: 160px;
            width: auto;
        }

        .contact-info {
        	display: flex;
        	align-items: center;
        	gap: 15px;
        	font-size: 13px;
        	font-weight: 500;
        }

        .contact-text {
	        text-align: right;
        }

        .facebook-link {
	        display: flex;
	        align-items: center;
	        justify-content: center;
	        width: 42px;
	        height: 42px;
	        background: #1877F2;
	        border-radius: 50%;
	        text-decoration: none;
	        transition: 0.3s;
        }

        .facebook-link:hover {
        	transform: scale(1.1);
        	background: #166FE5;
        }
        
        .facebook-link svg {
        	width: 20px;
        	height: 20px;
        	fill: #FFFFFF;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            color: var(--white);
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            font-weight: 800;
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.4;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            max-width: 60%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: slideInRight 0.8s ease-out;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--white);
            color: var(--red-primary);
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 3px solid var(--white);
            cursor: pointer;
            margin: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            background-color: var(--accent-gold);
            color: var(--red-primary);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .cta-button-red {
            background-color: var(--red-light);
            color: var(--white);
            border-color: var(--red-light);
        }

        .cta-button-red:hover {
            background-color: var(--white);
            color: var(--red-primary);
        }

        /* Video Section */
        .video-section {
            background: linear-gradient(135deg, var(--white) 0%, #FFF5F5 100%);
            padding: 80px 20px;
        }

        .video-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(196, 30, 58, 0.3);
            cursor: pointer;
        }

        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .video-wrapper.video-playing video {
            display: block;
        }

        .video-poster {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.3s ease;
        }

        .video-wrapper.video-playing .video-poster {
            opacity: 0;
            pointer-events: none;
        }

        .video-play-button {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
        }

        .video-play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
            background: var(--white);
        }

        .video-play-button svg {
            width: 40px;
            height: 40px;
            fill: var(--red-primary);
            margin-left: 8px;
        }

        .video-text {
            color: var(--white);
            font-size: 24px;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .video-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .video-title h2 {
            font-size: 36px;
            color: var(--red-primary);
            margin-bottom: 15px;
            font-weight: bold;
        }

        .video-title p {
            font-size: 18px;
            color: var(--gray-dark);
            opacity: 0.9;
        }

        /* Problem Section */
        .problem-section {
            background-color: var(--white);
            padding: 80px 20px;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 42px;
            color: var(--red-primary);
            margin-bottom: 50px;
            text-align: center;
            font-weight: bold;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--red-primary) 0%, var(--red-light) 100%);
            border-radius: 2px;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .problem-card {
            background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
            padding: 40px 30px;
            border-radius: 15px;
            border-left: 6px solid var(--red-primary);
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.1);
        }

        .problem-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
        }

        .problem-card h3 {
            color: var(--red-primary);
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .problem-card p {
            color: var(--gray-dark);
            font-size: 16px;
            line-height: 1.6;
        }

        /* Solution Section */
        .solution-section {
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            color: var(--white);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .solution-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .solution-section .section-title {
            color: var(--white);
        }

        .solution-section .section-title::after {
            background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.5) 100%);
        }

        .solution-intro {
            text-align: center;
            font-size: 18px;
            margin-bottom: 50px;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        .solution-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .step {
            background: rgba(255, 255, 255, 0.12);
            padding: 40px 30px;
            border-radius: 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .step:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .step-number {
            font-size: 50px;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .step h3 {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .step p {
            font-size: 15px;
            line-height: 1.6;
            opacity: 0.95;
        }

        /* Incluso Section */
        .included-section {
            background-color: var(--white);
            padding: 80px 20px;
        }

        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .included-item {
            background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            border: 3px solid var(--red-primary);
            font-weight: 600;
            color: var(--red-primary);
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .included-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(196, 30, 58, 0.2);
        }

        /* Models Section */
        .models-section {
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            color: var(--white);
            padding: 80px 20px;
            position: relative;
        }

        .models-section .section-title {
            color: var(--white);
        }

        .models-section .section-title::after {
            background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.5) 100%);
        }

        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-bottom: 40px;
        }

        .model-card {
            background: var(--white);
            color: var(--gray-dark);
            padding: 0;
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            height: auto;
        }

        .model-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        }

        .model-image {
            width: 100%;
            height: auto;
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 60px;
            font-weight: bold;
        }

        .model-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .model-content {
            padding: 35px 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .model-name {
            font-size: 26px;
            color: var(--red-primary);
            font-weight: bold;
            margin-bottom: 10px;
        }

        .model-specs {
            font-size: 16px;
            color: var(--red-primary);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .model-description {
            font-size: 15px;
            color: var(--gray-dark);
            margin-bottom: 30px;
            line-height: 1.6;
            flex-grow: 1;
        }

        .model-cta {
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            color: var(--white);
            padding: 14px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
        }

        .model-cta:hover {
            background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 100%);
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
        }

        /* Why Choose Section */
        .why-section {
            background-color: var(--white);
            padding: 80px 20px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .why-card {
            background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
            padding: 40px 30px;
            border-radius: 15px;
            border-left: 6px solid var(--red-primary);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.1);
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
        }

        .why-card h3 {
            color: var(--red-primary);
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .why-card p {
            color: var(--gray-dark);
            font-size: 15px;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            color: var(--white);
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section h2 {
            font-size: 44px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-weight: bold;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 50px;
            opacity: 0.95;
            position: relative;
            z-index: 1;
            line-height: 1.6;
        }

        .cta-buttons-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        footer {
            background-color: var(--red-dark);
            color: var(--white);
            text-align: center;
            padding: 40px 20px;
            font-size: 14px;
        }

        footer p {
            margin-bottom: 10px;
        }

        /* Animations */
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.8;
            }
        }

        @keyframes playButtonPulse {
            0% {
                transform: scale(1);
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            }
        }

        .video-play-button {
            animation: playButtonPulse 2s ease-in-out infinite;
        }

        .model-card, .step, .why-card, .problem-card {
            animation: slideIn 0.6s ease-out;
        }

        .cta-button {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .section-title {
                font-size: 26px;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 14px;
                width: 100%;
                margin: 8px 0;
            }

            .header-container {
                flex-direction: column;
                gap: 10px;
            }

            .contact-info {
                text-align: center;
                font-size: 11px;
            }

            .cta-section h2 {
                font-size: 28px;
            }

            .models-grid {
                grid-template-columns: 1fr;
            }

            .problem-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons-group {
                flex-direction: column;
            }

            .logo-header img {
                max-height: 120px;
            }

            .video-title h2 {
                font-size: 28px;
            }

            .video-text {
                font-size: 18px;
            }

            .video-play-button {
                width: 80px;
                height: 80px;
            }

            .video-play-button svg {
                width: 32px;
                height: 32px;
            }
        }