        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Saira Condensed', 'Arial', sans-serif;
            color: #181b20;
            background: #ffffff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        ul {
            list-style: none;
        }

        .container {
           
          
            padding: 0 20px;
        }

        /* ===== COLORES ===== */
        :root {
            --rojo: #ff1418;
            --rojo-oscuro: #cc1014;
            --negro: #181b20;
            --gris-claro: #f5f5f5;
            --blanco: #ffffff;
            --gris-texto: #6a6a6a;
            --menu-bg: #ffffff;
            --menu-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
        }
		
		
		/* ===== HERO — CARRUSEL CON SCROLL SNAP ===== */


        /* ===== HEADER SUPERIOR ===== */
        .top-header {
            background: #ffffff;
            color: #747474;
            padding: 8px 0;
            font-size: 14px;
            font-weight: 300;
            border-bottom: 1px solid #f0f0f0;
        }



        .top-header .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .top-header .contacto span {
            margin-left: 5px;
        }
   .social{
	    margin-right: 10px;
   }



        .top-header .contacto a {
            color: #ff1418;
        }

        .top-header .contacto a:hover {
            color: var(--rojo);
        }

        .top-header .contacto i {
            margin-right: 6px;
            color: #747474;
        }

        .top-header .social a {
            display: inline-block;
            color: #ff1418;
            margin-left: 12px;
            font-size: 16px;
            transition: color 0.2s;
        }

        .top-header .social a:hover {
            color: var(--rojo);
        }

        /* ===== NAVEGACIÓN PRINCIPAL ===== */
        .main-header {
            background: var(--blanco);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s;
			
        }

        .main-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 50px;
            flex-wrap: nowrap;
            position: relative;
        }

        .logo img {
            max-height: 70px;
            width: auto;
            display: block;
        }

         /* ===== MENÚ TOGGLE (HAMBURGUESA) ===== */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
            border-radius: 6px;
            transition: background 0.2s;
            z-index: 1001;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .menu-toggle:hover {
            background: rgba(0, 0, 0, 0.04);
        }

        .menu-toggle span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: var(--negro);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            transform-origin: center;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        /* ===== NAV MENU ===== */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .nav-menu>li {
            position: relative;
        }

        .nav-menu>li>a {
            display: block;
            padding: 10px;
            font-weight: 300;
            color: #181b20;
            border-bottom: 3px solid transparent;
            transition: border-color 0.2s, color 0.2s, background 0.2s;
            font-family: "Saira Condensed", sans-serif;
            font-size: 16px;
            letter-spacing: 1px;
            font-style: normal;
            white-space: nowrap;
            border-radius: 4px 4px 0 0;
        }

        .nav-menu>li>a:hover,
        .nav-menu>li>a.active {
            border-bottom-color: var(--rojo);
            color: var(--rojo);
        }

        .nav-menu>li>a .caret {
            margin-left: 4px;
            font-size: 11px;
            transition: transform 0.3s;
            display: inline-block;
        }

        .nav-menu>li:hover>a .caret {
            transform: rotate(180deg);
        }

  /* ===== MEGAMENU ===== */
        .megamenu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background: #ffffff;
            display: none;
            padding: 8px 0;
            border-radius: 0 0 8px 8px;
            box-shadow: var(--menu-shadow);
            z-index: 999;
            grid-template-columns: 1fr;
            gap: 0;
        }

        .nav-menu>li:hover .megamenu {
            display: grid;
            animation: menuFadeIn 0.25s ease;
        }

        @keyframes menuFadeIn {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .megamenu .col {
            padding: 10px 24px;
            background: #ffffff !important;
            min-height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
            cursor: default;
        }

        .megamenu .col:last-child {
            border-bottom: none;
        }

        .megamenu .col a {
            display: block;
            color: #181b20;
            font-size: 15px;
            font-weight: 400;
            text-shadow: none;
            letter-spacing: 0.3px;
            transition: color 0.2s;
            padding: 4px 0;
        }

        .megamenu .col a:hover {
            color: #ff1418;
        }

        .megamenu .col:hover {
            background: #f9f9f9 !important;
        }

        /* ===== SUB-MENU (idiomas) ===== */
        .sub-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--blanco);
            box-shadow: var(--menu-shadow);
            border-radius: 0 0 6px 6px;
            padding: 6px 0;
            min-width: 150px;
            z-index: 1000;
        }

        .nav-menu>li:hover .sub-menu {
            display: block;
            animation: menuFadeIn 0.25s ease;
        }

        .sub-menu li a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 400;
            color: var(--negro);
            transition: background 0.2s;
        }

        .sub-menu li a:hover {
            background: #f0f0f0;
            color: var(--rojo);
        }

        .sub-menu li a img {
            width: 18px;
            height: 12px;
            object-fit: cover;
        }



        /* ===== FOOTER ===== */
        .footer {
            background: var(--gris-claro);
            padding: 60px 0 20px;
            border-top: 1px solid #e0e0e0;
        }

        .footer .grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer .col h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--negro);
        }

        .footer .col p {
            font-size: 15px;
            color: #444;
            margin-bottom: 6px;
        }

        .footer .col a {
            color: var(--negro);
        }

        .footer .col a:hover {
            color: #ff1418;
        }

        .footer .col .destacado {
            font-weight: 500;
           width: 300px;
            font-size: 16px;
            color: var(--negro);
        }

        .footer .menu-footer {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer .menu-footer a {
            font-size: 15px;
            color: #444;
            transition: color 0.2s;
        }

        .footer .menu-footer a:hover {
            color: var(--rojo);
        }

        .footer .suscribirse .btn-sus {
            display: inline-block;
            padding: 12px 36px;
            background: var(--rojo);
            color: var(--blanco);
            border-radius: 3px;
            font-weight: 500;
            font-size: 16px;
            transition: background 0.2s;
            border: none;
            cursor: pointer;
            margin-bottom: 12px;
        }

        .footer .suscribirse .btn-sus:hover {
                    background: transparent;
            color: var(--rojo);
			    border: 2px solid var(--rojo);
        }

        .footer .suscribirse p {
            font-size: 14px;
            color: #555;
            max-width: 300px;
        }

        .footer-bottom {
            border-top: 1px solid #d0d0d0;
            padding-top: 20px;
            margin-top: 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 40px;
        }

        .footer-bottom a {
            font-size: 14px;
            color: #555;
        }

        .footer-bottom a:hover {
            color: var(--rojo);
        }
		
		
			/* 统一控制导航中所有下拉箭头 */
.nav-menu > li > a .fusion-caret i,
.nav-menu > li > a .fa-chevron-down {
    font-size: 0.65em;      /* 根据实际文字大小调整 */
    vertical-align: middle;
    margin-left: 2px;
}





        .page-banner {
            background: var(--negro);
            color: var(--blanco);
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
         
            display: flex;
            align-items: center;
        }

        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .page-banner h1 {
            font-size: 50px;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .page-banner h1 span {
            color: var(--rojo);
        }

        .page-banner p {
            font-size: 20px;
            font-weight: 300;
            color: #e0e0e0;
        }



/* 返回顶部按钮样式 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--rojo);      /* 可调整为主色调 */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.back-to-top:hover {
               background: transparent;
            color: var(--rojo);
			    border: 2px solid var(--rojo);
}





      @media (max-width: 768px) {

.logo img {
    max-height: 62px;
    width: auto;
    display: block;
}
        .main-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            flex-wrap: nowrap;
            position: relative;
        }

.card img
{
    padding-top: 6px;
}
 

}

  @media (max-width: 480px) {
       
.logo img {
    max-height: 52px;
    width: auto;
    display: block;
}
        .main-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            flex-wrap: nowrap;
            position: relative;
        }
        
        .card img
{
    padding-top: 6px;
}
 

  }
