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

        :root {
            --primary: #FF3366;
            --primary-dark: #E62958;
            --secondary: #00E5FF;
            --dark: #0A0E27;
            --dark-blue: #1A1F3A;
            --light: #F8F9FA;
            --accent: #FFC107;
            --success: #10B981;
            --error: #EF4444;
            --gradient-1: linear-gradient(135deg, #FF3366 0%, #FF6B9D 100%);
            --gradient-2: linear-gradient(135deg, #00E5FF 0%, #0099FF 100%);
            --anchor-offset: 88px;
        }

        html {
            scroll-padding-top: var(--anchor-offset);
        }

        section[id] {
            scroll-margin-top: var(--anchor-offset);
        }

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

        .skip-link {
            position: absolute;
            top: 1rem;
            left: -999px;
            z-index: 2000;
            background: var(--gradient-1);
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
        }

        .skip-link:focus-visible {
            left: 1rem;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.03;
            background: 
                radial-gradient(circle at 20% 50%, var(--primary) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--secondary) 0%, transparent 50%),
                radial-gradient(circle at 40% 90%, var(--accent) 0%, transparent 50%);
            animation: bgPulse 15s ease-in-out infinite;
        }

        @keyframes bgPulse {
            0%, 100% { opacity: 0.03; }
            50% { opacity: 0.06; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 5%;
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Hamburger Menu - Hidden on Desktop */
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            transition: transform 0.3s ease;
        }

        .hamburger-menu:hover {
            transform: scale(1.1);
            color: var(--accent);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 280px;
            height: 100vh;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(30, 30, 60, 0.98) 100%);
            backdrop-filter: blur(10px);
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1002;
            overflow-y: auto;
            box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            z-index: 1001;
        }

        .mobile-menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-logo {
            width: 60px;
            height: auto;
            filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.4));
        }

        .close-menu {
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }

        .close-menu:hover {
            color: var(--accent);
            transform: rotate(90deg);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 2rem 0;
        }

        .mobile-nav-links li {
            margin: 0;
        }

        .mobile-nav-links a {
            display: block;
            color: var(--light);
            text-decoration: none;
            padding: 1rem 2rem;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .mobile-nav-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--gradient-1);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .mobile-nav-links a:hover,
        .mobile-nav-links a:focus {
            background: rgba(255, 51, 102, 0.1);
            padding-left: 2.5rem;
        }

        .mobile-nav-links a:hover::before {
            transform: scaleY(1);
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.15) rotate(10deg);
        }

        .logo .skater-emoji {
            font-size: 3rem;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) 
                    drop-shadow(0 4px 20px rgba(255, 51, 102, 0.6));
        }

        .logo:hover .skater-emoji {
            filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1)) 
                    drop-shadow(0 6px 30px rgba(255, 51, 102, 0.8));
        }

        @keyframes glow {
            0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 51, 102, 0.3)); }
            50% { filter: drop-shadow(0 0 15px rgba(255, 51, 102, 0.6)); }
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s;
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 5% 50px;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            animation: fadeInLeft 1s ease-out;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 0.95;
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
        }

        .title-gradient {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .title-outline {
            color: transparent;
            -webkit-text-stroke: 2px var(--secondary);
            display: block;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(248, 249, 250, 0.8);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.75rem 1.8rem;
            font-size: 0.95rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 51, 102, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
        }

        .btn-secondary:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: fadeInRight 1s ease-out;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .skater-illustration {
            width: 100%;
            max-width: 500px;
            height: 500px;
            margin: 0 auto;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .skater-circle {
            position: absolute;
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .circle-1 {
            width: 400px;
            height: 400px;
            border: 2px solid rgba(255, 51, 102, 0.3);
        }

        .circle-2 {
            width: 300px;
            height: 300px;
            border: 2px dashed rgba(0, 229, 255, 0.3);
            animation-duration: 15s;
            animation-direction: reverse;
        }

        .circle-3 {
            width: 200px;
            height: 200px;
            border: 2px solid rgba(255, 193, 7, 0.3);
            animation-duration: 10s;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .skater-logo {
            position: relative;
            z-index: 5;
            width: 200px;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 30px rgba(255, 51, 102, 0.5));
            animation: skateFloat 2.5s ease-in-out infinite;
        }

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

        /* Features Section */
        .section {
            position: relative;
            padding: 100px 5%;
            z-index: 10;
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            margin-bottom: 3rem;
            letter-spacing: 2px;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: rgba(26, 31, 58, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

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

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(255, 51, 102, 0.3);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .feature-description {
            color: rgba(248, 249, 250, 0.7);
            line-height: 1.8;
        }

        /* Madrid Map Section */
        .map-section {
            background: var(--dark-blue);
            position: relative;
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }

        .madrid-map-area {
            width: 100%;
            max-width: 900px;
            position: relative;
        }

        .madrid-map-svg {
            width: 100%;
            height: auto;
            display: block;
        }

        .madrid-outline-path {
            stroke: url(#madridGradient);
            stroke-width: 2.5;
            stroke-linejoin: round;
            filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.3));
            transition: all 0.4s ease;
        }

        .madrid-map-svg:hover .madrid-outline-path {
            stroke-width: 3;
            filter: drop-shadow(0 0 16px rgba(255, 51, 102, 0.5)) drop-shadow(0 0 30px rgba(0, 229, 255, 0.2));
        }

        /* Contenedor de chinchetas */
        .location-pins {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        /* Chincheta individual */
        .location-pin {
            position: absolute;
            transform: translate(-50%, -50%);
            cursor: pointer;
            pointer-events: all;
            z-index: 10;
        }

        .location-pin i {
            font-size: 2rem;
            color: var(--primary);
            filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.6));
            animation: pulseDot 2s ease-in-out infinite;
            transition: all 0.3s;
            display: block;
        }

        .location-pin:hover i {
            color: var(--secondary);
            filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.8));
            transform: scale(1.2);
        }

        @keyframes pulseDot {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.6));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(255, 51, 102, 0.9));
            }
        }

        /* Tooltip de la chincheta */
        .pin-tooltip {
            position: absolute;
            bottom: calc(100% + 0.5rem);
            left: 50%;
            transform: translateX(-50%) scale(0.8);
            background: var(--dark);
            border: 1px solid var(--primary);
            border-radius: 10px;
            padding: 0.6rem 0.9rem;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            white-space: nowrap;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            z-index: 20;
        }

        .location-pin.active .pin-tooltip {
            opacity: 1;
            transform: translateX(-50%) scale(1);
            pointer-events: all;
        }

        .pin-tooltip-name {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--light);
        }

        .pin-tooltip-link {
            color: var(--secondary);
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: color 0.2s;
        }

        .pin-tooltip-link:hover {
            color: var(--primary);
        }

        .locations-list {
            max-width: 900px;
            width: 100%;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .location-item {
            background: rgba(26, 31, 58, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .location-item:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
        }

        .location-item i {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .location-name {
            font-weight: 600;
            color: var(--light);
        }

        /* Team Section */
        .team-section {
            background: var(--dark);
        }

        /* About Section */
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 4rem;
            background: rgba(26, 31, 58, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 3rem;
            transition: all 0.4s;
        }

        .about-content:hover {
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(255, 51, 102, 0.2);
        }

        .about-photo {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .photo-circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            border: 5px solid var(--dark);
            box-shadow: 0 20px 60px rgba(255, 51, 102, 0.3);
        }

        .photo-circle i {
            font-size: 10rem;
            color: white;
            opacity: 0.9;
        }

        .photo-decoration {
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            border: 2px dashed var(--primary);
            opacity: 0.3;
            animation: rotate 20s linear infinite;
            z-index: 1;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .about-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.5rem;
        }

        .about-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .about-name {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
        }

        .about-badge {
            background: var(--gradient-1);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .about-role {
            color: var(--secondary);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
        }

        .about-description {
            color: rgba(248, 249, 250, 0.8);
            line-height: 1.8;
            font-size: 1rem;
            margin: 0;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: rgba(255, 51, 102, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(255, 51, 102, 0.2);
            transition: all 0.3s;
        }

        .about-feature:hover {
            background: rgba(255, 51, 102, 0.15);
            transform: translateX(5px);
        }

        .about-feature i {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .about-feature span {
            color: var(--light);
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* Stats Counters */
        .stats-counters {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            padding: 2rem;
            background: rgba(26, 31, 58, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
        }

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

        .stat-number {
            display: block;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .stat-label {
            display: block;
            margin-top: 0.5rem;
            color: rgba(248, 249, 250, 0.8);
            font-size: 1rem;
            font-weight: 500;
        }

        /* About Instagram (dentro de Sobre Nosotros) */
        .about-instagram {
            text-align: center;
        }

        .instagram-heading {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        /* Collaborators Section - Carrusel automático */
        .collaborators-section {
            background: var(--dark);
        }

        .collaborators-carousel-wrapper {
            overflow: hidden;
            width: 100%;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .collaborators-carousel {
            display: flex;
            gap: 2rem;
            width: max-content;
            animation: carouselScroll 30s linear infinite;
        }

        .collaborators-carousel:hover {
            animation-play-state: paused;
        }

        @keyframes carouselScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .collaborator-card {
            flex-shrink: 0;
            width: 200px;
            background: rgba(248, 249, 250, 0.95);
            border-radius: 15px;
            padding: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 140px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .collaborator-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .collaborator-card:hover::before {
            opacity: 0.1;
        }

        .collaborator-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .collaborator-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 1px;
            z-index: 1;
            text-align: center;
        }

        .instagram-subtitle {
            color: var(--secondary);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .instagram-carousel-wrapper {
            position: relative;
            max-width: 900px;
            margin: 0 auto 1.5rem;
        }

        .instagram-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            min-height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .instagram-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 0 0.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            pointer-events: none;
        }

        .instagram-slide .instagram-media {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .instagram-carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 51, 102, 0.9);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 10;
            transition: background 0.3s, transform 0.3s;
        }

        .instagram-carousel-btn:hover {
            background: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .instagram-carousel-prev { left: -24px; }
        .instagram-carousel-next { right: -24px; }

        .instagram-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .instagram-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            background: transparent;
            cursor: pointer;
            padding: 0;
            transition: background 0.3s, transform 0.3s;
        }

        .instagram-carousel-dot.active { background: var(--primary); }

        .instagram-slide iframe {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .instagram-slide iframe:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 51, 102, 0.2);
        }

        .instagram-cta {
            display: inline-flex;
            margin-top: 0;
        }

        /* Form Section */
        .form-section {
            background: var(--dark-blue);
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(26, 31, 58, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 3rem;
            width: min(100%, 800px);
            overflow: hidden;
        }

        .form-grid-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        label {
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        label i {
            font-size: 0.9rem;
        }

        input, textarea {
            padding: 1rem;
            background: rgba(10, 14, 39, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            color: var(--light);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
            width: 100%;
            max-width: 100%;
            min-width: 0;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Custom Select */
        .custom-select {
            position: relative;
        }

        .custom-select select {
            width: 100%;
            padding: 1rem;
            padding-right: 2.5rem;
            background: rgba(10, 14, 39, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            color: var(--light);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            cursor: pointer;
            appearance: none;
            transition: all 0.3s;
            min-width: 0;
        }

        .custom-select::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary);
            pointer-events: none;
            transition: all 0.3s;
        }

        .custom-select select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
        }

        .custom-select:focus-within::after {
            color: var(--primary);
        }

        /* Number input - now full width like others */
        input[type="number"] {
            appearance: textfield;
        }

        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
            appearance: none;
        }

        /* Phone input group */
        .phone-input-group {
            display: flex;
            gap: 0.5rem;
            width: 100%;
            min-width: 0;
        }

        .phone-prefix {
            flex: 0 0 120px;
            padding: 1rem;
            padding-right: 2.5rem;
            background: rgba(10, 14, 39, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            color: var(--light);
            font-size: 1rem;
            font-family: 'Outfit', sans-serif;
            cursor: pointer;
            appearance: none;
            transition: all 0.3s;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffd93d' d='M1.41 0L6 4.59 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 12px;
            max-width: 140px;
            min-width: 0;
        }

        .phone-prefix:hover {
            border-color: rgba(255, 51, 102, 0.3);
            background-color: rgba(10, 14, 39, 0.7);
        }

        .phone-prefix:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
        }

        .phone-number {
            flex: 1;
            min-width: 0;
        }

        .field-hint {
            display: block;
            margin-top: 0.4rem;
            font-size: 0.85rem;
            color: rgba(248, 249, 250, 0.5);
        }

        /* Field error messages */
        .field-error {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.875rem;
            color: #ff4757;
            min-height: 1.2rem;
            font-weight: 500;
            animation: shake 0.3s;
        }

        .field-error:empty {
            display: none;
        }

        input.error, select.error, textarea.error {
            border-color: #ff4757 !important;
            background: rgba(255, 71, 87, 0.05);
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        /* Checkbox groups */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }

        .checkbox-group:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 51, 102, 0.3);
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .checkbox-label {
            flex: 1;
            color: rgba(248, 249, 250, 0.9);
            font-size: 0.95rem;
            line-height: 1.5;
            cursor: pointer;
            margin: 0;
            overflow-wrap: anywhere;
        }

        .link-terms {
            color: var(--secondary);
            text-decoration: underline;
            transition: color 0.3s;
        }

        .link-terms:hover {
            color: var(--primary);
        }

        .submit-btn {
            width: auto;
            margin: 0 auto;
            padding: 0.9rem 2.5rem;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Outfit', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }

        .submit-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 51, 102, 0.6);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Message Alert */
        .message-alert {
            padding: 1rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            display: none;
            animation: slideDown 0.3s ease-out;
        }

        .message-alert.show {
            display: block;
        }

        .message-alert.success {
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid var(--success);
            color: var(--success);
        }

        .message-alert.error {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid var(--error);
            color: var(--error);
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
            cursor: pointer;
            transition: all 0.3s;
            z-index: 1000;
            animation: bounce 2s ease-in-out infinite;
            text-decoration: none;
        }

        .whatsapp-float i {
            font-size: 2.2rem;
            color: white;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
        }

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

        /* Footer */
        footer {
            background: rgba(10, 14, 39, 0.95);
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: rgba(248, 249, 250, 0.6);
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin: 1.5rem 0;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero {
                min-height: auto;
                padding: 110px 5% 40px;
            }

            nav {
                padding: 1rem 1.5rem;
            }

            .nav-container {
                justify-content: flex-start;
            }

            .hamburger-menu {
                display: block;
            }

            .nav-links {
                display: none;
            }

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

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1.5rem;
            }

            .hero-visual {
                display: none;
            }

            .hero-cta {
                justify-content: center;
            }

            .form-grid-2col {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .form-group.full-width {
                grid-column: 1;
            }

            /* About Section Responsive */
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem;
            }

            .photo-circle {
                width: 250px;
                height: 250px;
            }

            .photo-circle i {
                font-size: 8rem;
            }

            .photo-decoration {
                width: 270px;
                height: 270px;
            }

            .about-name {
                font-size: 2rem;
            }

            .location-pin i {
                font-size: 1.75rem;
            }

            .stats-counters {
                gap: 2rem;
                padding: 1.5rem;
            }

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

            .instagram-carousel-prev { left: 8px; }
            .instagram-carousel-next { right: 8px; }
        }

        @media (max-width: 640px) {
            .hero-title {
                font-size: 3rem;
            }

            .section {
                padding: 60px 5%;
            }

            .form-container {
                padding: 1.5rem 1rem;
                border-radius: 20px;
            }

            .phone-input-group {
                flex-direction: column;
            }

            .phone-prefix {
                flex: 1 1 auto;
                max-width: 100%;
            }

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

            .about-content {
                padding: 1.5rem;
                gap: 1.5rem;
            }

            .photo-circle {
                width: 200px;
                height: 200px;
            }

            .photo-circle i {
                font-size: 6rem;
            }

            .photo-decoration {
                width: 220px;
                height: 220px;
            }

            .about-name {
                font-size: 1.75rem;
            }

            .about-role {
                font-size: 1rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .location-pin i {
                font-size: 1.5rem;
            }

            .pin-tooltip {
                font-size: 0.8rem;
            }

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

            .stats-counters {
                gap: 1.5rem;
                padding: 1rem;
            }
        }

        /* Loading Animation */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        section {
            animation: fadeIn 0.8s ease-out;
        }

        .loader {
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
            display: inline-block;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }

            .collaborators-carousel {
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                animation: none;
                transform: none;
            }

            .collaborators-carousel .collaborator-card:nth-child(n+7) {
                display: none;
            }

            .collaborators-carousel-wrapper {
                mask-image: none;
                -webkit-mask-image: none;
            }
        }
