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

        :root {
              --color-primary: #0a0a0a;
            --color-secondary: #1a1a1a;
            --color-accent: #ffd700;
            --color-accent-dark: #ffb700;
            --color-dorado: #d89b00;
            --color-text-Grey-500:#454545;
            --color-text: #ffffff;
            --color-text-muted: #a0a0a0;
            --color-border: #2a2a2a;
            --gradient-primary: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
            --gradient-card: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
            --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);

            --shadow-hover: 0 20px 25px -5px rgba(14, 165, 233, 0.25);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            background-color: var(--color-primary);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

      
      

 

        /* SECCIÓN MARCAS */
        .marcas {
            padding: 70px 0;
            background: #fff;
            position: relative;
            overflow: hidden;
            margin-top:130px;
        }

        .marcas::before {
            content: 'MARCAS';
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 10rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.02);
            white-space: nowrap;
            z-index: 0;
        }

        /* ELEMENT: marcas__header */
        .marcas__header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }

        .marcas__header::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        /* ELEMENT: marcas__subtitle */
        .marcas__subtitle {
            color: var(--color-dorado);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* ELEMENT: marcas__title */
        .marcas__title {
           
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            /* -webkit-text-fill-color: transparent; */
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.2;
             color: var(--color-dorado);
        }

        /* ELEMENT: marcas__description */
        .marcas__description {
            color: var(--color-text-Grey-500);
            /* max-width: 700px; */
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* ELEMENT: marcas__container */
        .marcas__container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        .marcas__container a {
            /* background: var(--color-accent); */
            color:#000;
                border: none;
                padding: 12px 30px;
                border-radius: 4px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                cursor: pointer;
                transition: var(--transition);
                font-size: 0.85rem;
                 box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
                width: 100%;
                clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
                text-decoration:none;
            }
          
               
                 a.marcas__card {
            display: block;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }
        a.marcas__card:visited,
        a.marcas__card:hover,
        a.marcas__card:focus {
            color: inherit;
            outline: none;
        }
         
        .marcas__btn{padding: 20px; background: var(--color-accent); color:#001a33;}

        /* ELEMENT: marcas__card */
        .marcas__card {
            background: var(--gradient-card);
            
            padding: 0;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border);
            overflow: hidden;
            position: relative;
            transition: var(--transition);
            cursor: pointer;
        }

        .marcas__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: left;
        }

        /* MODIFIER: marcas__card--hovered */
        .marcas__card:hover {
            transform: translateY(-10px);
             box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
            border-color: var(--color-accent);
        }

        .marcas__card:hover::before {
            transform: scaleX(1);
        }

        /* ELEMENT: marcas__image-container */
        .marcas__image-container {
            height: 200px;
            background: var(--color-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
           
            position: relative;
            overflow: hidden;
        }

        .marcas__image-container::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(to top, rgba(10, 10, 10, 0.05), transparent);
            pointer-events: none;
        }

        /* ELEMENT: marcas__image */
        .marcas__image {
            max-width: 100%;
            
            object-fit: contain;
            transition: var(--transition);
            filter: contrast(1.1) brightness(1.05);
        }

        .marcas__card:hover .marcas__image {
            transform: scale(1.05);
            filter: contrast(1.2) brightness(1.1);
        }

        /* ELEMENT: marcas__content */
        .marcas__content {
            padding: 30px;
            text-align: center;
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* ELEMENT: marcas__badge */
        .marcas__badge {
            display: inline-block;
           
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
           
        }

        /* ELEMENT: marcas__name */
        .marcas__name {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--color-text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ELEMENT: marcas__text */
        .marcas__text {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex: 1;
        }

        /* ELEMENT: marcas__specs */
        .marcas__specs {
            display: flex;
            justify-content: space-around;
            margin-bottom: 25px;
            border-top: 1px solid var(--color-border);
            padding-top: 20px;
        }

        /* ELEMENT: marcas__spec-item */
        .marcas__spec-item {
            text-align: center;
        }

        /* ELEMENT: marcas__spec-label */
        .marcas__spec-label {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        /* ELEMENT: marcas__spec-value */
        .marcas__spec-value {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-text);
        }

        /* ELEMENT: marcas__button */
        .marcas__button {
            background: var(--color-accent);
            color: #000000;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.85rem;
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
            width: 100%;
            clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
        }

        /* MODIFIER: marcas__button--hovered */
        .marcas__button:hover {
            background: var(--color-accent-dark);
            color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
        }

        /* ELEMENT: marcas__floating-elements */
        .marcas__floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        /* ELEMENT: marcas__floating-circle */
        .marcas__floating-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 183, 0, 0.05));
            animation: floatMarcas 8s ease-in-out infinite;
        }

        .marcas__floating-circle:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .marcas__floating-circle:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .marcas__floating-circle:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes floatMarcas {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-15px) rotate(120deg);
            }
            66% {
                transform: translateY(-8px) rotate(240deg);
            }
        }

        .cta {
            padding: 70px 0;
            background: var(--color-secondary);
            position: relative;
            overflow: hidden;
        }

        .cta__content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta__title {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .cta__description {
            font-size: 1.2rem;
            color: var(--color-text-muted);
            margin-bottom: 50px;
            line-height: 1.8;
        }

        .cta__button {
            background: var(--color-accent);
            color: #000000;
            padding: 22px 60px;
            border: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
        }

        .cta__button:hover {
            background: var(--color-accent-dark);
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
        }



      
        /* Footer */   
        .footer {
            background: var(--color-primary);
            border-top: 1px solid var(--color-border);
            padding: 80px 0 30px;
        }

        .footer__content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer__logo {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .footer__brand-description {
            color: var(--color-text-muted);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .footer__section-title {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }

        .footer__list {
            list-style: none;
        }

        .footer__list-item {
            margin-bottom: 12px;
        }

        .footer__link {
            color: var(--color-text-muted);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer__link:hover {
            color: var(--color-accent);
        }

        .footer__bottom {
            border-top: 1px solid var(--color-border);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }
       

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
            z-index: 999;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            text-decoration: none;
        }

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

        
        /* RESPONSIVE */
        @media (max-width: 968px) {
            .header__top {
                display: none;
            }

            .header__cta {
                font-size: 0.75rem;
                padding: 10px 20px;
            }

            .hero {
                margin-top: 100px;
            }

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

            .section::before {
                font-size: 5rem;
            }

            .benefit__header {
                flex-direction: column;
                text-align: center;
            }

            .calculator__box {
                padding: 30px;
            }
        }

        /* @media (max-width: 968px) {
            .header__top {
                display: none;
            }
            
            .header__menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: var(--color-secondary);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: right 0.4s ease-in-out;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
                z-index: 1000;
            }

            .header__menu.active {
                right: 0;
            }

            .header__menu-link {
                font-size: 1.2rem;
                padding: 15px 30px;
                width: 80%;
                text-align: center;
                border-bottom: 1px solid var(--color-border);
            }

            .header__cta {
                display: none;
            }

            .header__burger {
                display: flex;
            }

            .header__menu.active ~ .header__burger {
                position: relative;
                z-index: 1001;
            }

            .hero {
                margin-top: 100px;
            }
            
            .hero__wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero__image-container {
                order: 2;
            }
            
            .hero__stats {
                grid-template-columns: 1fr;
            }
            
            .services::before,
            .marcas::before {
                font-size: 5rem;
            }

            .marcas__container {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .marcas__content {
                padding: 25px 20px;
            }
          
            
            
            .marcas__specs {
                flex-direction: column;
                gap: 15px;
            }
            
            .marcas__spec-item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px 0;
                border-bottom: 1px solid var(--color-border);
            }
            
            .marcas__spec-item:last-child {
                border-bottom: none;
            }
        }

        @media (max-width: 640px) {
            .hero__buttons {
                flex-direction: column;
            }
            
            .hero__button {
                width: 100%;
            }
            
            .services__grid {
                grid-template-columns: 1fr;
            }

            .header__menu {
                width: 100%;
            }
        }
    */