:root {
    --azul-legado: #4b3621;
    --azul-legado-light: #2c5282;
    --beige-corporativo: #f5f2e8;
    --beige-dark: #e8e0d0;
    --texto-principal: #2d3748;
}

html {
    overflow-x: hidden;
}

body { 
    background: linear-gradient(135deg, var(--beige-corporativo) 0%, #faf8f3 100%);
    font-family: 'Sarabun', sans-serif; /* Default to Sarabun Light */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Header inicial - oculto */
.header-corporativo {
    background-color: #443737; /* PANTONE 19-0912 TCX */
    padding: 1.2rem 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -1;
}

/* Navbar scroll - aparece al hacer scroll */
.navbar-scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(68, 55, 55, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-scroll.visible {
    transform: translateY(0);
}

/* Show navbar immediately for guests - REMOVED */

.navbar-scroll .logo-section img {
    width: 130px;
}

.navbar-scroll .nav-links a {
    font-family: 'Sarabun', sans-serif;
    font-weight: 300;
    color: var(--beige-corporativo);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 1rem;
}

.navbar-scroll .nav-links a:hover {
    color: white;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-section img {
    width: 150px; 
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.titulo-equus {
    font-family: 'Gill Sans', sans-serif; /* Primary Titles */
    font-size: 2.2rem; 
    font-weight: 700;
    margin: 0;
}

.subtitulo-portal {
    font-family: 'Sarabun', sans-serif;
    font-style: italic; /* Secondary Texts */
    font-weight: 400;
    margin: 0;
}

.nav-links a {
    font-family: 'Sarabun', sans-serif; /* Base Text */
    font-weight: 300;
    color: var(--beige-corporativo);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 1rem;
}

.nav-links a:hover {
    color: white;
}

.btn-login {
    background: var(--beige-corporativo);
    color: var(--azul-legado);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Cards y secciones */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 750px;
    overflow: hidden;
    margin: 0;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel .carousel-inner {
    height: 100%;
}

.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    z-index: 3;
    max-width: 90%;
    padding: 0 2rem;
}

/* Logo en hero con navbar blurreado gradiente horizontal */
.hero-logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 30%, transparent 60%);
    backdrop-filter: blur(15px);
    mask-image: linear-gradient(90deg, black 0%, black 20%, transparent 50%);
    -webkit-mask-image: linear-gradient(90deg, black 0%, black 20%, transparent 50%);
    padding: 1.5rem 2rem;
    height: 120px;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    backdrop-filter: blur(8px);
    z-index: -1;
}

.hero-logo img {
    position: relative;
    z-index: 2;
    width: 180px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    animation: heroTitleEntrance 1.2s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    opacity: 0.95;
    max-width: 95%;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 4;
}

.carousel-indicators {
    z-index: 4;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 600px;
    }

    .hero-content {
        left: 1.5%;
        max-width: 96%;
        padding: 0 1rem;
    }

    .hero-logo {
        padding: 1rem 1rem;
        height: 100px;
    }

    .hero-logo img {
        width: 140px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 4rem;
        max-width: 98%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        left: 3%;
        max-width: 90%;
    }

    .hero-logo {
        top: 1rem;
        left: 1rem;
    }

    .hero-logo img {
        width: 140px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@keyframes heroTitleEntrance {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    60% {
        opacity: 0.8;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center; /* Center content vertically */
    background: linear-gradient(135deg, var(--beige-corporativo) 0%, white 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--beige-dark);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer; /* Make the card look clickable */
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(75, 54, 33, 0.25);
    border-color: var(--azul-legado);
}

.service-icon {
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.service-icon i {
    width: 48px;
    height: 48px;
    color: var(--azul-legado);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.2);
    color: #3a291a;
}

.service-card h3 {
    min-height: 2.4rem; /* Ensure consistent height for titles */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-card p {
    min-height: 3rem; /* Ensure consistent height for descriptions */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0; /* Remove extra margin */
}

.info-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
    border: none;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.info-section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4b3621 0%, #f5f2e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(75, 54, 33, 0.2);
}

.info-section-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(75, 54, 33, 0.4);
    background: linear-gradient(135deg, #3a291a 0%, #e8e0d0 100%);
}

.info-section-icon i {
    font-size: 2.5rem; 
}

.contact-section {
    background: linear-gradient(135deg, var(--beige-corporativo) 0%, var(--beige-dark) 100%);
    border-radius: 12px;
    padding: 2rem;
}

/* Team Cards con animación hover */
.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 520px; /* Más altura para ver mejor a las personas */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--beige-dark);
    background-size: cover; /* Asegura que el fondo se comporte como una imagen */
    background-position: center;
    background-repeat: no-repeat;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Posicionamiento uniforme para todas las fotos */
    transition: all 0.4s ease;
}

/*   .pedro-luis-img {
    object-position: center 30%; 
} */

.claudia-img {
    object-position: center 35%; 
}

.juan-pablo-img {
    object-position: center 90%;
}

.yesenia-img {
    object-position: center 40%; 
}

.team-card:hover .team-card-img {
    transform: scale(1.2) rotate(1deg);
}

.team-card-overlay {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1), transparent) !important;
    color: var(--beige-corporativo) !important;
    padding: 2.5rem 1.5rem 1.8rem;
    transform: translateY(0) !important; /* Siempre visible   */
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(3px);
    opacity: 1 !important;
    visibility: visible !important;
}

.team-card:hover .team-card-overlay {
    transform: translateY(0) scale(1.02);
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    backdrop-filter: blur(5px);
}

.team-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--beige-corporativo);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 2px 2px 6px rgba(75, 54, 33, 0.8);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.team-card:hover .team-card-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: white;
    text-shadow: 3px 3px 12px rgba(75, 54, 33, 0.9);
    letter-spacing: 1px;
    transform: translateY(-5px);
}

.team-card-text {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
    color: var(--beige-dark);
    transition: all 0.5s ease;
    transform: translateY(0);
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(75, 54, 33, 0.6);
}

.team-card:hover .team-card-text {
    font-size: 1.2rem;
    opacity: 1;
    font-weight: 500;
    transform: translateY(-2px);
    color: var(--beige-corporativo);
    text-shadow: 2px 2px 4px rgba(75, 54, 33, 0.8);
}

/* Mission Vision Cards con animación hover */
.mission-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 20vw;
    min-height: 280px;
    max-height: 450px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    border: 1px solid var(--beige-dark);
    background-size: cover; /* Asegura que el fondo se comporte como una imagen */
    background-position: center;
    background-repeat: no-repeat;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    border-color: var(--azul-legado);
}

.mission-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 80%, transparent 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.mission-card:hover .mission-card-overlay {
    transform: translateY(0);
}

.mission-card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem; /* Increased font size */
    font-weight: 800; /* Increased boldness */
    color: var(--azul-legado);
    text-align: center;
    width: 100%;
    margin: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.mission-card:hover .mission-card-title {
    top: 20%;
    font-size: 1.7rem; /* Slightly larger font size on hover */
}

.mission-card-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--beige-corporativo);
}

/* Property Cards con animación hover */
.property-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 22vw;
    min-height: 320px;
    max-height: 500px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.property-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.property-card:hover .property-card-img {
    transform: scale(1.1);
}

.property-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 80%, transparent 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.property-card:hover .property-card-overlay {
    transform: translateY(0);
}

.property-card-title {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    text-align: center;
    width: 100%;
    margin: 0;
    transition: all 0.4s ease;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
}

.property-card-title-overlay {
    display: inline-block;
    background: rgba(44, 41, 38, 0.55);
    border-radius: 10px;
    padding: 0.2em 0.8em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}


.property-card:hover .property-card-title {
    opacity: 1;
    top: 30%;
    font-size: 2.2rem;
}

.property-card-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
    color: var(--beige-corporativo);
}

/* Botones */
.btn-primary-custom {
    background: linear-gradient(135deg, #4b3621 0%, #4b3621 70%, #f5f2e8 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem; 
    font-size: 0.875rem; 
            border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #3a2b19 0%, #3a2b19 70%, #eae4d8 100%);
    color: #f5f2e8; 
}

.btn-outline-custom {
    border: 2px solid var(--azul-legado);
    color: var(--azul-legado);
    background: transparent;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--azul-legado);
    color: white;
}

.btn-outline-primary {
     border-color: #4b3621; /* Café */
    color: #4b3621; /* Café */
}

.btn-outline-primary:hover {
     background-color: #4b3621; /* Café */
     color: white; /* Texto blanco al pasar el mouse */
}
.btn-outline-primary:focus, 
.btn-outline-primary:active {
  border-color: #4b3621 !important; /* Café */
background-color: #4b3621 !important; /* Café */
color: white !important; /* Texto blanco */
box-shadow: 0 0 0 0.25rem rgba(75, 54, 33, 0.5); /* Sombra café */
}

/* Títulos y texto */
.titulo-seccion {
    color: var(--azul-legado);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.texto-placeholder {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 1rem;
}

.texto-acceso-requerido {
    color: var(--azul-legado);
    font-weight: 600;
    font-size: 0.9rem;
}

.titulo-seccion-small {
    font-size: 1.5rem; /* Adjust the size as needed */
    font-weight: 600; /* Keep it bold but slightly lighter */
}

/* Footer */
.footer-corporativo {
    background-color: #443737; /* PANTONE 19-0912 TCX */
    color: var(--beige-corporativo);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-contact-info {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-contact-info i {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.footer-contact-info a {
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-contact-info a:hover {
    color: #f0f0f0 !important;
    opacity: 0.9;
}



/* Dropdown Servicios */
.services-dropdown {
    position: relative;
    display: inline-block;
}

.services-dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1002;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0;
    border: 1px solid var(--beige-dark);
    margin-top: 0.5rem;
}

.services-dropdown.active .services-dropdown-content {
    display: block;
}

.services-dropdown-content a {
    color: var(--texto-principal) !important;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.services-dropdown-content a:hover {
    background: var(--beige-corporativo);
    color: var(--azul-legado) !important;
    padding-left: 1.25rem;
}

.services-dropdown-content a i {
    width: 16px;
    height: 16px;
    color: var(--azul-legado);
}

.services-dropdown-toggle {
    background: none;
    border: none;
    color: var(--beige-corporativo);
    font-size: 0.8rem;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.services-dropdown.active .services-dropdown-toggle {
    transform: rotate(180deg);
}

.services-dropdown-link {
    display: flex;
    align-items: center;
    color: var(--beige-corporativo);
    text-decoration: none;
}

@media (max-width: 768px) {
    .services-dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
        margin: 0.5rem 0;
        border-radius: 4px;
        transform: none;
        left: auto;
        width: 100%;
    }
    
    .services-dropdown-mobile.active .services-dropdown-content {
        display: block;
    }
}

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--beige-corporativo);
    margin: 5px 0;
    transition: 0.3s;
    transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, var(--azul-legado) 0%, #2c1810 100%);
    transition: transform 0.3s ease;
    transform: translateX(100%);
    z-index: 1000;
    padding: 80px 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.side-menu.active {
    transform: translateX(0);
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.side-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.side-menu a {
    display: block;
    color: var(--beige-corporativo);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(245, 242, 232, 0.2);
    font-weight: 400;
    transition: all 0.3s ease;
}

.side-menu a:hover {
    color: white;
    padding-left: 10px;
    background: rgba(255,255,255,0.1);
}

.side-menu .user-info {
    background: rgba(245, 242, 232, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: var(--beige-corporativo);
    border: 1px solid rgba(245, 242, 232, 0.2);
}

.side-menu .btn {
    width: 100%;
    margin-top: 1rem;
    background: var(--beige-corporativo);
    color: var(--azul-legado);
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
}

.side-menu .btn:hover {
    background: white;
}

/* Estilos específicos para dropdown de servicios en side menu */
.side-menu .services-dropdown-content a {
    color: var(--beige-corporativo) !important;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.side-menu .services-dropdown-content a:hover {
    color: white !important;
    background: rgba(255,255,255,0.1);
    padding-left: 1.25rem;
}

.side-menu .services-dropdown-content a i {
    color: var(--beige-corporativo) !important;
}

.side-menu .services-dropdown-content a:hover i {
    color: white !important;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger-btn {
        display: block;
    }
    
    .logo-section img {
        width: 120px;
    }
    
    .titulo-equus {
        font-size: 1.8rem;
    }
    
    .team-card {
        height: 450px; /* Altura ajustada para móviles */
    }
    
    /* Footer móvil mejorado */
    .footer-corporativo .container {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-corporativo .logo-section {
        justify-content: center;
    }
    
    .footer-corporativo .d-flex.flex-column {
        gap: 1.5rem !important;
        margin: 1rem 0;
    }
    
    .footer-contact-info {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .footer-corporativo .text-end {
        text-align: center !important;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-corporativo .text-end p {
        margin: 0;
        padding: 0 1rem;
    }
}

/* Para dispositivos extra pequeños */
@media (max-width: 480px) {
    .footer-corporativo {
        padding: 1.5rem 0;
    }
    
    .footer-contact-info {
        font-size: 1rem;
    }
    
    .footer-corporativo .text-end {
        font-size: 0.8rem;
    }
    
    .footer-corporativo .logo-section img {
        max-width: 150px;
    }
}