/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 90px !important; /* HEADER COMPACTO: 90px (más eficiente) */
    min-width: 200px !important;
    flex-shrink: 0;
    padding: 5px 10px !important;
    margin-right: 15px !important;
}

/* Logo principal en el header - TAMAÑO AGRESIVO 120px */

/* Estilos con máxima especificidad y tamaño MUY GRANDE 180px */
nav .nav-logo .logo,
header .nav-logo .logo,
.navbar .nav-logo .logo,
.nav-container .nav-logo .logo,
.nav-logo .logo {
    height: 180px !important;
    max-height: 180px !important;
    width: 180px !important;
    max-width: 180px !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
    margin-right: 15px !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

/* También aplicar al elemento img directamente - TAMAÑO MUY GRANDE 180px */
nav .nav-logo img,
header .nav-logo img,
.navbar .nav-logo img,
.nav-container .nav-logo img,
.nav-logo img {
    height: 180px !important;
    max-height: 180px !important;
    width: 180px !important;
    max-width: 180px !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

/* Forzar tamaño de logo de manera GLOBAL - 180px */
.logo,
#header .logo,
.top-nav .logo,
header img.logo {
    height: 180px !important;
    max-height: 180px !important;
    width: 180px !important;
    max-width: 180px !important;
    min-height: 180px !important;
    min-width: 180px !important;
}

/* Texto fallback del logo - MUY AUMENTADO PARA LOGO GRANDE */
nav .nav-logo .logo-text,
header .nav-logo .logo-text,
.navbar .nav-logo .logo-text,
.nav-container .nav-logo .logo-text,
.nav-logo .logo-text {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 4rem !important;
    color: #3b82f6 !important;
    display: none !important;
    margin-left: 10px !important;
    padding: 0 !important;
    line-height: 1.1 !important;
}

/* Mostrar texto si el logo falla en cargar */
.nav-logo img[style*="display: none"] + .logo-text {
    display: block !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(249, 115, 22, 0.7));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.gradient-text {
    background: linear-gradient(45deg, #f97316, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.btn-primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #3b82f6;
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
    background: none;
    border: none;
    padding: 0;
}

.stat-item:nth-child(1) .stat-icon {
    color: #ffffff;
}

.stat-item:nth-child(2) .stat-icon {
    color: #ffffff;
}

.stat-item:nth-child(3) .stat-icon {
    color: #ffffff;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.95;
    color: #f1f5f9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cloud-logos {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cloud-logos i {
    font-size: 2rem;
    color: #ffffff;
    background: none;
    border: none;
    padding: 0;
}

/* Estilo especial para el icono de Oracle Cloud */
.cloud-logos .fa-cloud {
    position: relative;
}

.cloud-logos .fa-cloud::before {
    content: "OCI";
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: none;
    border: 2px solid #e1effe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.service-icon i {
    font-size: 2rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

/* Estilos especiales para logos de cloud en servicios */
.cloud-service-logos {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
}

.cloud-service-logos i {
    font-size: 1.5rem;
    color: #3b82f6;
}

/* Logo de Oracle Cloud en tarjeta de servicio */
.oracle-cloud-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(197deg) brightness(97%) contrast(91%);
    transition: all 0.3s ease;
}

.service-card:hover .oracle-cloud-logo {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(197deg) brightness(110%) contrast(91%);
    transform: scale(1.05);
}

/* Icono de servicios cloud (AWS/OCI) */
.cloud-services-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(197deg) brightness(97%) contrast(91%);
    transition: all 0.3s ease;
    padding: 8px;
}

.service-card:hover .cloud-services-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(197deg) brightness(110%) contrast(91%);
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    margin-bottom: 2rem;
}

.about-description p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: none;
    border: 2px solid #e1effe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    opacity: 0.9;
}

/* Process Section - Horizontal Design */
.process {
    padding: 6rem 0;
    background: #f8fafc;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Línea conectora horizontal entre items */
.process-timeline:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #e5e7eb 5%, 
        #e5e7eb 95%, 
        transparent 100%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.6s ease both;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

.timeline-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid #e1effe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.8rem;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    margin-bottom: 1.5rem;
}

.timeline-item:hover .timeline-icon {
    border-color: #3b82f6;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.timeline-content {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    flex: 1;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: none;
    border: 2px solid #e1effe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
}

/* Email Links - Estilos para enlaces mailto */
.email-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.email-link:hover {
    color: #2563eb;
    transform: translateX(2px);
}

.email-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.email-link:hover:after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: none;
    border: 2px solid #e1effe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.social-link:hover {
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Email Link en Footer */
.email-link-footer {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.email-link-footer:hover {
    color: #93c5fd;
    transform: translateX(2px);
}

.email-link-footer:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #60a5fa;
    transition: width 0.3s ease;
}

.email-link-footer:hover:after {
    width: 100%;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 3rem auto 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    /* Process section en móvil - mantiene diseño vertical optimizado */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1rem 0;
    }

    .process-timeline:before {
        display: none;
    }

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

    .timeline-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}

/* ========================================
   CORRECCIÓN DEFINITIVA DEL LOGO - TAMAÑO AGRESIVO 120px
   ======================================== */

/* Header container - COMPACTO */
header, .header, nav, .navbar {
    height: 90px !important;
    padding: 0 !important;
}

/* Logo container - COMPACTO PERO LOGO MUY GRANDE */
.nav-logo, header .nav-logo, nav .nav-logo {
    height: 90px !important;
    min-height: 90px !important;
    padding: 5px 10px !important;
    width: 200px !important;
}

/* Logo image - MUY GRANDE 180px */
img.logo, .logo, .nav-logo img, .nav-logo .logo {
    height: 180px !important;
    max-height: 180px !important;
    min-height: 180px !important;
    width: 180px !important;
    max-width: 180px !important;
    min-width: 180px !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fallback text */
.logo-text {
    font-size: 3rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

/* Mobile responsiveness - header compacto, logo grande */
@media (max-width: 768px) {
    header, .header, nav, .navbar {
        height: 70px !important;
    }
    
    .nav-logo, header .nav-logo, nav .nav-logo {
        height: 70px !important;
        min-height: 70px !important;
        width: 150px !important;
        padding: 3px 8px !important;
    }
    
    img.logo, .logo, .nav-logo img, .nav-logo .logo {
        height: 140px !important;
        max-height: 140px !important;
        min-height: 140px !important;
        width: 140px !important;
        max-width: 140px !important;
        min-width: 140px !important;
    }
    
    .logo-text {
        font-size: 3rem !important;
    }
}