:root {
    --primary: #00E676;
    --primary-hover: #00C853;
    --bg-main: #08080C;
    --bg-darker: #040406;
    --bg-card: #111116;
    --bg-card-hover: #16161E;
    --text-main: #FFFFFF;
    --text-muted: #A3A3A3;
    --border-color: rgba(255, 255, 255, 0.06);
    
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img, svg {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.text-accent {
    color: var(--primary);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 140px 0;
    position: relative;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    text-align: center;
    min-height: 48px; /* Touch target size */
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--primary);
    color: #08080C;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 230, 118, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 6px 20px rgba(0, 230, 118, 0.25);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #08080C;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.scroll-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.1s ease-out;
    z-index: 1002;
}

.navbar.scrolled {
    background-color: rgba(8, 8, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-main);
}

.logo-text::after {
    content: '.';
    color: var(--primary);
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    transition: var(--transition-fast);
}

.logo-img:hover {
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-nav {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-nav:hover {
    border-color: #FFFFFF;
    background-color: #FFFFFF;
    color: #08080C;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-color);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    color: #FFFFFF;
}

.lang-btn.active {
    color: var(--primary);
}

.lang-divider {
    color: var(--border-color);
    font-size: 0.85rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-bg-animation::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.07) 0%, rgba(0, 0, 0, 0) 70%);
    animation: ambientGlow 18s infinite alternate ease-in-out;
    z-index: 2;
    pointer-events: none;
}

.hero-bg-animation::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.04) 0%, rgba(0, 0, 0, 0) 75%);
    animation: ambientGlow2 14s infinite alternate-reverse ease-in-out;
    z-index: 2;
    pointer-events: none;
}

@keyframes ambientGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15%, 10%) scale(1.15); }
}

@keyframes ambientGlow2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10%, -8%) scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 12, 0.2) 0%, var(--bg-main) 95%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin-top: var(--nav-height);
}

.hero h1 {
    margin-bottom: 1.75rem;
}

.hero p {
    font-size: clamp(1.125rem, 2.5vw, 1.35rem);
    margin-bottom: 2.75rem;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
}

/* Nosotros Section */
.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.mv-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mv-card {
    background-color: var(--bg-card);
    padding: 1.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary);
    transition: var(--transition-fast);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mv-card:hover {
    border-left-width: 6px;
    border-color: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary);
    background-color: var(--bg-card-hover);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.25);
}

.badge {
    display: inline-block;
    background-color: rgba(0, 230, 118, 0.08);
    color: var(--primary);
    padding: 4px 12px;
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 4px;
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.mv-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nosotros-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-placeholder:hover .nosotros-img {
    transform: scale(1.04);
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,230,118,0.1) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.placeholder-logo {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 10px;
    z-index: 2;
}

/* Productos Section */
.productos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.card {
    background-color: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.card:hover {
    border-color: rgba(0, 230, 118, 0.25);
    transform: translateY(-6px) scale(1.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 35px rgba(0, 0, 0, 0.45);
    background-color: var(--bg-card-hover);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.card-icon-svg {
    width: 32px;
    height: 32px;
}

.card:hover .card-icon {
    background-color: rgba(0, 230, 118, 0.08);
    border-color: rgba(0, 230, 118, 0.15);
    color: var(--primary);
}

.card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Por Qué DAP Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-top: 5rem;
}

.feature-item {
    position: relative;
    cursor: default;
}

.feature-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
    line-height: 1;
    margin-bottom: -1rem;
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.feature-item:hover .feature-number {
    -webkit-text-stroke-color: rgba(0, 230, 118, 0.4);
}

.feature-content {
    position: relative;
    z-index: 2;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.feature-item:hover .feature-content {
    border-top-color: var(--primary);
}

.brand-item span {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Contacto Section */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4.5rem;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 230, 118, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.info-item p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-link {
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary);
}

/* Form Styles */
.contacto-form {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 8px 30px rgba(0, 0, 0, 0.25);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #FFFFFF;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background-color: #16161C;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #55555C;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.map-container {
    margin-top: 4rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 380px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background-color: var(--bg-darker);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.75rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
}

.footer-logo .logo-img-footer {
    height: 60px;
    width: auto;
}

.copyright {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.footer-legal {
    margin-top: 0.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.legal-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

.legal-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp Official Green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    z-index: 100;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1EBE55;
}

/* Animations */
.hidden {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

/* Responsive Design */
@media (max-width: 1024px) {
    .h1 {
        font-size: 3rem;
    }
    .section {
        padding: 100px 0;
    }
}

@media (max-width: 992px) { /* Tablet/iPad */
    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .nosotros-image {
        order: -1;
    }
    
    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .productos-grid .card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 768px) { /* Mobile */
    :root {
        --nav-height: 70px;
    }

    .section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        padding: 2rem;
        gap: 2rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }

    .productos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .productos-grid .card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 4rem;
    }

    .feature-content {
        border-top: none;
        border-left: 2px solid var(--primary);
        padding-top: 0;
        padding-left: 1.5rem;
    }

    .feature-item:hover .feature-content {
        border-left-width: 4px;
        border-left-color: var(--primary);
    }

    .contacto-form {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}


/* ==========================================================================
   Nuevas Secciones (Verticales y Partner) - Skill UI-UX-PRO-MAX
   ========================================================================== */

/* Verticales Section */
.verticales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.vertical-card {
    background-color: var(--bg-card);
    padding: 2.2rem 1.8rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vertical-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.08);
}

.vertical-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background-color: rgba(0, 230, 118, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.vertical-card:hover .vertical-icon {
    background-color: var(--primary);
    color: #111;
}

.vertical-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
}

.vertical-card p {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Partner Section */
.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.partner-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partner-pilars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-pilar {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--bg-main);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.partner-pilar:hover {
    border-color: rgba(0, 230, 118, 0.3);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pilar-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(0, 230, 118, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.partner-pilar:hover .pilar-icon {
    background-color: var(--primary);
    color: #111;
}

.pilar-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--text-main);
}

.pilar-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Media Queries Responsivas */
@media (max-width: 1024px) {
    .verticales-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .verticales-grid {
        grid-template-columns: 1fr;
    }
}
