/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografía */
h1 { font-size: 46px; font-weight: 700; }
h2 { font-size: 35px; font-weight: 600; }
h3 { font-size: 30px; font-weight: 600; }
h4 { font-size: 28px; font-weight: 500; }
h5 { font-size: 26px; font-weight: 500; }
h6 { font-size: 22px; font-weight: 500; }
p { font-size: 14px; }

/* Colores */
:root {
    --primary-color: #34AADC;
    --secondary-color: #004C7B;
    --accent-color: #F8C982;
    --text-light: #ffffff;
    --text-dark: #333333;
}

/* Botones */
.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e6b574;
    transform: translateY(-2px);
}

/* Cinta Superior */
.top-bar {
    background: transparent;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.top-bar.scrolled {
    background: var(--secondary-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name span {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-text {
    color: var(--accent-color);
    font-weight: 500;
    margin-right: 10px;
}

.social-link {
    color: var(--accent-color);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

/* Header */
.header {
    background: transparent;
    padding: 15px 0;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    top: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo con enlace */
.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Menú móvil mejorado */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1002;
        position: relative;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--text-light);
        margin: 3px 0;
        transition: 0.3s;
        transform-origin: center;
    }
    
    .header.scrolled .hamburger span {
        background: var(--text-dark);
    }
    
    /* Animación del hamburger */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Menú móvil */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #1B1B1B;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(27, 27, 27, 0.95);
        z-index: -1;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        color: var(--text-light) !important;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
        min-width: 200px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--accent-color);
        color: var(--secondary-color) !important;
    }
    
    .nav-link::after {
        display: none;
    }

    /* Mejorar visibilidad del logo en móvil */
    .logo {
        z-index: 1002;
        position: relative;
    }
    
    /* Ajustar header en móvil */
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        position: relative;
        z-index: 1002;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.4);
}

.hero-text {
    max-width: 600px;
    color: var(--text-light);
    text-align: left;
    padding-left: 0;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.hero-title {
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: left;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-prev,
.hero-next {
    position: absolute;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 20px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

/* Responsive para hero */
@media (max-width: 768px) {
    .hero-text {
        max-width: 90%;
        text-align: left;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
}


/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
}

/* Sección Promoción - Ancho completo sin espacios */
.promotion {
    padding: 0;
    background: #f8f9fa;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.promotion .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.promotion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.promotion-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    height: 400px;
}

.promotion-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.promotion-item:hover img {
    transform: scale(1.1);
}

.promotion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.promotion-item:hover .promotion-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.promotion-overlay img {
    max-width: 70%;
    height: auto;
    object-fit: contain;
    transform: none !important;
    transition: none;
}

/* Responsive para la sección promoción */
@media (max-width: 768px) {
    .promotion-content {
        grid-template-columns: 1fr;
    }
    
    .promotion-item {
        height: 300px;
    }
    
    .promotion-overlay img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .promotion-item {
        height: 250px;
    }
    
    .promotion-overlay img {
        max-width: 90%;
    }
}

/* Sección Promo - Grid 5x1 */
.promo {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 500;
}

.promo h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    font-weight: 700;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.promo-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.promo-card-link:hover {
    transform: translateY(-5px);
}

.promo-card {
    background: white;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-card:hover {
    box-shadow: 0 8px 25px rgba(52, 170, 220, 0.2);
    border: 2px solid var(--primary-color);
}

.promo-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.promo-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.promo-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* Responsive para el grid */
@media (max-width: 1200px) {
    .promo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .promo-card {
        padding: 20px 10px;
    }
    
    .promo-card h3 {
        font-size: 16px;
    }
    
    .promo-card p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .promo-card img {
        max-width: 100px;
    }
}




/* Sección Información */
.info-section {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-text {
    padding-right: 20px;
}

.info-text h2 {
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.3;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.info-list li {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.company-info {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 5px;
}

.info-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-image img:hover {
    transform: scale(1.05);
}

/* Responsive para la sección información */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .info-text {
        padding-right: 0;
    }
    
    .info-text h2 {
        font-size: 26px;
    }
    
    .info-list li {
        font-size: 15px;
    }
    
    .company-info {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 60px 0;
    }
    
    .info-text h2 {
        font-size: 22px;
    }
    
    .info-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .company-info {
        font-size: 15px;
        padding: 15px;
    }
}

/* Logos de Clientes - Espacio adicional para el título */
.clients {
    padding: 80px 0;
    background: #f8f9fa;
}

.clients .section-title {
    text-align: center;
    margin-bottom: 100px; /* Cambiado de 50px a 100px (50px adicionales) */
    color: var(--secondary-color);
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.client-logo {
    flex: 0 0 200px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsive para la sección de logos */
@media (max-width: 768px) {
    .clients .section-title {
        margin-bottom: 80px; /* Reducido proporcionalmente en móviles */
    }
}

@media (max-width: 480px) {
    .clients .section-title {
        margin-bottom: 70px; /* Más reducido en pantallas muy pequeñas */
    }
}

/* Galería - Ancho completo sin espacios */
.gallery {
    padding: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.gallery .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.gallery .section-title {
    text-align: center;
    margin: 60px 0 40px;
    color: var(--secondary-color);
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 434px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    border-radius: 0;
}

.gallery-item img {
    width: 100%;
    height: 434px;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(0.7);
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 170, 220, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Responsive para la galería */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-item {
        height: 350px;
    }
    
    .gallery-item img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .gallery-item img {
        height: 280px;
    }
    
    .gallery-overlay h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .gallery-overlay h4 {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .gallery-item img {
        height: 300px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .header {
        top: 80px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-text {
        padding: 0 20px;
    }
    
    .promotion-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-track {
        animation-duration: 15s;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-nav {
        display: none;
    }
}


/* Banner Promocional */
.promo-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px 0;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.promo-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.promo-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.promo-icon {
    background: var(--accent-color);
    color: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(248, 201, 130, 0.3);
}

.promo-text h3 {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.promo-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.promo-banner-right {
    flex-shrink: 0;
}

.btn-promo {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(248, 201, 130, 0.3);
}

.btn-promo:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 201, 130, 0.4);
}

/* Responsive para el banner promocional */
@media (max-width: 768px) {
    .promo-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .promo-banner-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .promo-text h3 {
        font-size: 18px;
    }
    
    .btn-promo {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 20px 0;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .promo-text h3 {
        font-size: 16px;
    }
}

/* Footer - Enlaces con color actualizado */
.footer {
    background: #1B1B1B;
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
    display: block;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

/* Enlaces del footer con color #F8C982 */
.footer-section a {
    color: #F8C982;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* Footer - Eliminar completamente estilos de recuadro */
.footer .contact-info {
    margin-bottom: 20px;
}

.footer .contact-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    border-left: none !important;
}

.footer .contact-info p i {
    color: var(--accent-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Resetear completamente los estilos de info-item en el footer */
.footer .info-item {
    margin-bottom: 15px !important;
    padding: 0 !important;
    background: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    border-left: none !important;
    border: none !important;
    box-shadow: none !important;
}

.footer .info-item h4 {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: none !important;
    padding: 0 !important;
    border: none !important;
}

.footer .info-item h4 i {
    color: var(--accent-color);
    font-size: 16px;
}

.footer .info-item p {
    color: var(--text-light) !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0 !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    border-left: none !important;
}

/* Resetear cualquier estilo heredado de address-section, phone-section, etc. en el footer */
.footer .address-section,
.footer .phone-section,
.footer .schedule-section {
    margin-bottom: 15px !important;
    padding: 0 !important;
    background: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    border-left: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Asegurar que los párrafos dentro de estas secciones también estén limpios */
.footer .address-section p,
.footer .phone-section p,
.footer .schedule-section p {
    color: var(--text-light) !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0 !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
}

/* Mantener estilos de recuadro SOLO para secciones de contacto y sucursales */
.contact-section .info-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.branches-section .address-section,
.branches-section .phone-section,
.branches-section .schedule-section {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-section .info-item h4,
.branches-section .branch-details h4 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section .info-item h4 i,
.branches-section .branch-details h4 i {
    color: var(--accent-color);
    font-size: 18px;
}

.contact-section .info-item p,
.branches-section .branch-details p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: #1B1B1B;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Copyright Section */
.footer-bottom {
    border-top: 1px solid rgba(248, 201, 130, 0.2);
    padding-top: 25px;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright-content p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    flex: 1;
}

/* Enlaces en el copyright también con color #F8C982 */
.copyright-content a {
    color: #F8C982;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-content a:hover {
    color: var(--primary-color);
}

/* Imagen de métodos de pago - Tamaño natural */
.payment-methods {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.payment-methods img {
    height: auto;
    width: auto;
    max-height: 40px;
    max-width: 200px;
    object-fit: contain;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .copyright-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .contact-info p {
        font-size: 13px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .payment-methods img {
        height: 35px;
    }
}


/* Hero Section Nosotros */
.hero-nosotros {
    position: relative;
    height: 350px;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-image: url('../images/Banner-about-us.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    margin-top: 0px; /* Espacio para el header fijo */
}

.hero-nosotros-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.hero-nosotros .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: var(--text-light);
    font-weight: bold;
}

.breadcrumb-current {
    color: var(--text-light);
    font-weight: 600;
}

/* Responsive para hero nosotros */
@media (max-width: 768px) {
    .hero-nosotros {
        height: 250px;
        margin-top: 50px; /* Ajuste para móviles */
    }
    
    .breadcrumb {
        font-size: 14px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-nosotros {
        height: 150px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
}

/* Sección Bienvenida */
.welcome-section {
    padding: 80px 0;
    background: white;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text {
    padding-right: 20px;
}

.welcome-text h2 {
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.welcome-text p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.company-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 30px;
}

.welcome-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive para la sección bienvenida */
@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .welcome-text {
        padding-right: 0;
    }
    
    .welcome-text h2 {
        font-size: 28px;
    }
    
    .welcome-text p {
        font-size: 15px;
    }
    
    .company-description {
        padding: 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 50px 0;
    }
    
    .welcome-text h2 {
        font-size: 24px;
    }
    
    .welcome-text p {
        font-size: 14px;
    }
    
    .company-description {
        padding: 18px;
        font-size: 14px;
    }
    
    .welcome-image img {
        border-radius: 10px;
    }
}


/* Sección Propósito */
.purpose-section {
    margin: 90px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.purpose-background {
    background-image: url('../images/Banner-about-us.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
}

.purpose-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 76, 123, 0.8);
    z-index: 1;
}

.purpose-background .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.purpose-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.purpose-text h2 {
    color: var(--accent-color);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.purpose-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.purpose-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-catalog {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    box-shadow: 0 6px 20px rgba(248, 201, 130, 0.4);
    text-align: center;
}

.btn-catalog:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 201, 130, 0.5);
}

/* Responsive para la sección propósito */
@media (max-width: 768px) {
    .purpose-section {
        margin: 60px 0;
    }
    
    .purpose-background {
        padding: 60px 0;
    }
    
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .purpose-text h2 {
        font-size: 28px;
    }
    
    .purpose-text p {
        font-size: 15px;
    }
    
    .btn-catalog {
        padding: 15px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .purpose-section {
        margin: 50px 0;
    }
    
    .purpose-background {
        padding: 50px 0;
    }
    
    .purpose-text h2 {
        font-size: 24px;
    }
    
    .purpose-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .btn-catalog {
        padding: 12px 25px;
        font-size: 13px;
    }
}

/* Sección Identidad */
.identity-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.identity-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 600;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.identity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.identity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.identity-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.identity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.identity-card:hover .identity-image img {
    transform: scale(1.1);
}

.identity-content {
    padding: 30px 25px;
}

.identity-content h3 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.identity-content p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

/* Valores en dos columnas */
.values-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    color: var(--text-dark);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Responsive para la sección identidad */
@media (max-width: 1024px) {
    .identity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .identity-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .identity-section {
        padding: 60px 0;
    }
    
    .identity-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .identity-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .identity-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }
    
    .identity-image {
        height: 250px;
    }
    
    .values-columns {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .identity-content {
        padding: 25px 20px;
    }
    
    .identity-content h3 {
        font-size: 20px;
    }
    
    .identity-content p {
        font-size: 13px;
    }
    
    .values-list li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .identity-section {
        padding: 50px 0;
    }
    
    .identity-section .section-title {
        font-size: 24px;
    }
    
    .identity-image {
        height: 200px;
    }
    
    .identity-content {
        padding: 20px 15px;
    }
    
    .identity-content h3 {
        font-size: 18px;
    }
}

/* Header específico para página nosotros.html - Ajuste de posición al hacer scroll */
body.nosotros-page .header {
    background: #1B1B1B;
    padding: 15px 0;
    position: fixed;
    top: 0px; /* Posición inicial debajo de la cinta superior */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

body.nosotros-page .header.scrolled {
    background: #1B1B1B;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    top: 0; /* Se pega completamente a la parte superior */
}

/* Ocultar o reducir la cinta superior al hacer scroll */
body.nosotros-page .top-bar {
    background: #1B1B1B;
    transition: all 0.3s ease;
    transform: translateY(0);
}

body.nosotros-page .top-bar.scrolled {
    background: var(--secondary-color);
    transform: translateY(-100%); /* Oculta la cinta superior */
    opacity: 0;
}

/* Ajustes de color de texto para nosotros.html */
body.nosotros-page .nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

body.nosotros-page .header.scrolled .nav-link {
    color: var(--text-dark);
}

body.nosotros-page .nav-link:hover,
body.nosotros-page .nav-link.active {
    color: var(--accent-color);
}

body.nosotros-page .header.scrolled .logo img {
    filter: none; /* Logo normal en fondo blanco */
}

/* Hamburger menu para nosotros.html */
body.nosotros-page .hamburger span {
    background: var(--text-light);
    transition: 0.3s;
}

body.nosotros-page .header.scrolled .hamburger span {
    background: var(--text-dark);
}


/* Sección Catálogo */
.catalog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.catalog-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 600;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-top: auto;
}

.product-footer {
    padding: 0 20px 20px;
}

.btn-contact {
    display: block;
    width: 100%;
    background: var(--accent-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.btn-contact:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    border-color: var(--secondary-color);
}

/* Responsive para catálogo */
@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .catalog-section {
        padding: 60px 0;
    }
    
    .catalog-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 18px;
    }
    
    .product-info p {
        font-size: 13px;
    }
    
    .product-footer {
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
    }
}

/* Sección Sucursales - Actualizada */
.branches-section {
    padding: 80px 0;
    background: white;
}

.branches-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 600;
}

.branches-main-grid {
    display: grid;
    grid-template-rows: auto auto;
    gap: 80px; /* Margen de 80px entre los dos grids */
}

.branch-row {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Distribución 1/3 y 2/3 */
    gap: 40px;
    align-items: start;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.branch-info h3 {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
}

.branch-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.address-section,
.phone-section,
.schedule-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.branch-details h4 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-details h4 i {
    color: var(--accent-color);
    font-size: 18px;
}

.branch-details p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mantener estilos de recuadro para secciones de contacto y sucursales */
.contact-section .info-item,
.branches-section .address-section,
.branches-section .phone-section,
.branches-section .schedule-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-section .info-item {
    background: #f8f9fa;
}

.branches-section .address-section,
.branches-section .phone-section,
.branches-section .schedule-section {
    background: white;
}

/* Asegurar que los estilos del footer no afecten otras secciones */
.contact-section .info-item h4,
.branches-section .branch-details h4 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section .info-item h4 i,
.branches-section .branch-details h4 i {
    color: var(--accent-color);
    font-size: 18px;
}

.contact-section .info-item p,
.branches-section .branch-details p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.branch-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.branch-map iframe {
    border-radius: 15px;
}

/* Responsive para sucursales */
@media (max-width: 1024px) {
    .branch-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .branch-map iframe {
        height: 300px;
    }
    
    .branches-main-grid {
        gap: 60px; /* Reducir margen en tablets */
    }
}

@media (max-width: 768px) {
    .branches-section {
        padding: 60px 0;
    }
    
    .branches-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .branches-main-grid {
        gap: 50px; /* Reducir margen en móviles */
    }
    
    .branch-row {
        padding: 25px;
    }
    
    .branch-info h3 {
        font-size: 24px;
    }
    
    .branch-details {
        gap: 20px;
    }
    
    .address-section,
    .phone-section,
    .schedule-section {
        padding: 15px;
    }
    
    .branch-details h4 {
        font-size: 15px;
    }
    
    .branch-details p {
        font-size: 13px;
    }
    
    .branch-map iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .branch-row {
        padding: 20px;
    }
    
    .branches-main-grid {
        gap: 40px; /* Margen mínimo en pantallas muy pequeñas */
    }
}

/* Sección Contacto */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}



.contact-info h3 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
}

.info-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.info-item h4 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item h4 i {
    color: var(--accent-color);
    font-size: 18px;
}

.info-item p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Formulario de Contacto */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.btn-submit:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive para contacto */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-info h3,
    .contact-form-container h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form-container {
        padding: 20px;
    }
    
    .info-item {
        padding: 15px;
    }
}

/* Sección Aviso Legal */
.legal-notice-section {
    padding: 80px 0;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 20px;
}

.legal-text {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.legal-text p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    text-indent: 20px;
}

.legal-text p:last-child {
    margin-bottom: 0;
}

/* Destacar URLs en el texto */
.legal-text p {
    word-wrap: break-word;
}

/* Responsive para aviso legal */
@media (max-width: 768px) {
    .legal-notice-section {
        padding: 60px 0;
    }
    
    .legal-content h1 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .legal-text {
        padding: 25px;
    }
    
    .legal-text p {
        font-size: 14px;
        line-height: 1.7;
        text-indent: 15px;
    }
}

@media (max-width: 480px) {
    .legal-notice-section {
        padding: 50px 0;
    }
    
    .legal-content h1 {
        font-size: 24px;
    }
    
    .legal-text {
        padding: 20px;
    }
    
    .legal-text p {
        font-size: 13px;
        text-indent: 10px;
    }
}

/* Sección Política de Devolución */
.return-policy-section {
    padding: 80px 0;
    background: white;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-content h1 {
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 20px;
}

.policy-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: white;
}

.policy-intro h2 {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.policy-text {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h3 {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.policy-section h4 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 15px 0;
}

.policy-section p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.policy-section p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Listas estilizadas */
.resolution-list,
.no-return-list,
.invalid-list,
.documents-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.resolution-list li,
.no-return-list li,
.invalid-list li,
.documents-list li {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

/* Iconos para diferentes tipos de listas */
.resolution-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.no-return-list li::before {
    content: '✗';
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.invalid-list li::before {
    content: '⚠';
    color: #ffc107;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.documents-list li::before {
    content: '📄';
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Notas especiales */
.note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    color: #856404;
    font-style: italic;
    margin: 20px 0;
}

.important-note {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 15px;
    color: #721c24;
    font-weight: 600;
    margin: 20px 0;
}

/* Responsive para política de devolución */
@media (max-width: 768px) {
    .return-policy-section {
        padding: 60px 0;
    }
    
    .policy-content h1 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .policy-intro {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .policy-intro h2 {
        font-size: 20px;
    }
    
    .policy-text {
        padding: 25px;
    }
    
    .policy-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .policy-section h3 {
        font-size: 20px;
        padding-left: 12px;
    }
    
    .policy-section h4 {
        font-size: 16px;
    }
    
    .policy-section p {
        font-size: 14px;
    }
    
    .resolution-list li,
    .no-return-list li,
    .invalid-list li,
    .documents-list li {
        font-size: 14px;
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .return-policy-section {
        padding: 50px 0;
    }
    
    .policy-content h1 {
        font-size: 24px;
    }
    
    .policy-intro {
        padding: 15px;
    }
    
    .policy-intro h2 {
        font-size: 18px;
    }
    
    .policy-text {
        padding: 20px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
    
    .policy-section p {
        font-size: 13px;
    }
}

/* Sección Política de Privacidad */
.privacy-policy-section {
    padding: 80px 0;
    background: white;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-content h1 {
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 20px;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.intro-text {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.6;
}

.last-updated {
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

.privacy-text {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h3 {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.privacy-section h4 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.privacy-section p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-section p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Listas específicas con iconos */
.info-list,
.data-types,
.usage-list,
.sharing-list,
.security-list,
.cookies-list,
.rights-list,
.retention-list,
.changes-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.info-list li,
.data-types li,
.usage-list li,
.sharing-list li,
.security-list li,
.cookies-list li,
.rights-list li,
.retention-list li,
.changes-list li {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

/* Iconos específicos para cada tipo de lista */
.info-list li::before {
    content: '📋';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.data-types li::before {
    content: '🔒';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.usage-list li::before {
    content: '⚙️';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.sharing-list li::before {
    content: '🤝';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.security-list li::before {
    content: '🛡️';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.cookies-list li::before {
    content: '🍪';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.rights-list li::before {
    content: '⚖️';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.retention-list li::before {
    content: '📅';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.changes-list li::before {
    content: '📢';
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Secciones especiales */
.contact-info {
    
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-rights {
    background: #fff3e0;
    border: 1px solid #ffcc02;
    border-radius: 8px;
    padding: 15px;
    color: #e65100;
    font-weight: 500;
    margin: 20px 0;
}

.consent-text {
    background: #f3e5f5;
    border: 1px solid #ce93d8;
    border-radius: 8px;
    padding: 20px;
    color: var(--secondary-color);
    font-weight: 500;
    font-style: italic;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 60px 0;
    }
    
    .privacy-content h1 {
        font-size: 28px;
    }
    
    .privacy-intro {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .privacy-text {
        padding: 25px;
    }
    
    .privacy-section h3 {
        font-size: 20px;
    }
    
    .privacy-section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .privacy-content h1 {
        font-size: 24px;
    }
    
    .privacy-text {
        padding: 20px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
}