@font-face {
    font-family: 'DIN Pro';
    src: url('fuente/din-pro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #101014;
    --dark-secondary: #1a1a1a;
    --accent-aqua: #40E0D0;
    --accent-orange: #FF8C00;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
}

body {
    font-family: 'DIN Pro', sans-serif;
    background: #101014;
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

@media (min-width: 1400px) {
    header {
        padding: 1rem 4rem;
    }
}


/* Main navigation bar */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    padding: 1.25rem 2.5rem;
    border: 1px solid rgba(64, 224, 208, 0.1);
    min-width: 0;
}

/* Triangle logo with gradient */
.nav-logo {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.triangle-logo {
    width: 32px;
    height: 26px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 50%, #40E0D0 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Navigation links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-aqua);
}



.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 0;
    transition: transform 0.3s;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.menu-toggle:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--text-white);
    transition: all 0.3s;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* Menu toggle button - hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 0;
    transition: transform 0.3s;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.menu-toggle:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s;
    transform-origin: center;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: calc(1rem + 80px);
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    width: var(--nav-width, 300px);
    max-height: calc(100vh - 120px);
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    border: 1px solid rgba(64, 224, 208, 0.1);
    z-index: 2000;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
    padding: 1.25rem 2.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem 0;
    overflow-y: auto;
    max-height: calc(80vh - 2rem);
}

.mobile-nav-link {
    padding: 1rem 1.5rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    text-decoration: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    font-family: 'DIN Pro', sans-serif;
    white-space: nowrap;
}

.mobile-nav-link:hover {
    background: rgba(20, 20, 20, 0.8);
    border-color: rgba(64, 224, 208, 0.3);
    transform: translateY(-2px);
}


/* Sections */
section {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

#red {
    max-width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
}

/* Sections use transparent background to show body gradient */
section {
    background: transparent;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/bg_ypf.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.cta-buttons {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.85rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.5s ease, border-color 0.5s ease, transform 0.4s ease, box-shadow 0.5s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'DIN Pro', sans-serif;
    margin: 0 0.75rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Pseudo-elemento para el sweep fill */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn .arrow {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.1rem;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.btn:first-child {
    margin-left: 0;
}

.btn:last-child {
    margin-right: 0;
}

/* --- PRIMARY: Gris suave → Fill oscuro --- */
.btn-primary {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-primary::before {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary .arrow {
    order: -1;
}

.btn-primary:hover {
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover .arrow {
    order: 1;
    transform: translateX(3px);
}

/* --- SECONDARY: Transparente → Fill sutil --- */
.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.btn-secondary::before {
    background: rgba(255, 255, 255, 0.08);
}

.btn-secondary .arrow {
    order: 1;
}

.btn-secondary:hover {
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover .arrow {
    order: -1;
    transform: translateX(-3px);
}

/* Content Sections */
.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--accent-aqua);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(64, 224, 208, 0.2);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-aqua);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.2);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-aqua);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Collapsible Sections */
.collapsible {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(64, 224, 208, 0.15);
    border-radius: 0;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.collapsible:hover {
    border-color: rgba(64, 224, 208, 0.3);
}

.collapsible-header {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    color: var(--text-white);
    background: transparent;
}

.collapsible-header:hover {
    background: rgba(64, 224, 208, 0.05);
}

.collapsible-header::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-white);
    transition: transform 0.3s;
    line-height: 1;
    margin-left: 1rem;
}

.collapsible.active .collapsible-header::after {
    transform: rotate(45deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.collapsible.active .collapsible-content {
    max-height: 500px;
}

.collapsible-content-inner {
    padding: 1.5rem;
    padding-top: 0;
    color: var(--text-gray);
    line-height: 1.7;
}

.collapsible-content-inner ul {
    list-style: none;
    padding-left: 0;
}

.collapsible-content-inner li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.collapsible-content-inner li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-aqua);
    font-size: 1.5rem;
}

/* Station Cards */
/* Stations Grid */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1600px;
    width: 100%;
}

.station-card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(64, 224, 208, 0.15);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.station-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-aqua);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.2);
}

.station-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 0.8rem;
    overflow: hidden;
}

.station-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.station-card:hover .station-image img {
    transform: scale(1.05);
}

.station-card-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.station-card h4 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.station-description {
    color: var(--text-gray);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.station-location {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    line-height: 1.3;
}

.station-location::before {
    content: '📍';
    font-size: 0.9rem;
}

.station-contact-info {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    line-height: 1.3;
}

.station-contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.station-services {
    margin-bottom: 1rem;
}

.station-services-title {
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.station-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.station-service-tag {
    background: rgba(64, 224, 208, 0.15);
    color: var(--accent-aqua);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    border: 1px solid rgba(64, 224, 208, 0.3);
}

.station-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.station-btn {
    flex: 1;
    padding: 0.6rem 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: 'DIN Pro', sans-serif;
}

.station-btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.station-btn-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.station-btn-primary {
    background: var(--accent-aqua);
    color: var(--dark-bg);
    border: 1px solid var(--accent-aqua);
}

.station-btn-primary:hover {
    background: #35c9b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 224, 208, 0.4);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 5px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-aqua);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(64, 224, 208, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info-item {
    color: var(--text-gray);
}

.footer-info-item strong {
    color: var(--accent-aqua);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 968px) {

    /* Hide nav links on mobile, keep nav visible */
    .nav-links {
        display: none;
    }

    .main-nav {
        display: flex;
        width: 100%;
        max-width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    header {
        padding: 0.75rem 1rem;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {

    /* Header adjustments */
    header {
        padding: 0.75rem 1rem;
    }

    .menu-toggle {
        padding: 0.4rem;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
    }

    /* Mobile menu adjustments */
    .mobile-menu {
        min-width: 280px;
        max-width: 85vw;
    }

    .mobile-nav-links {
        gap: 0.6rem;
    }

    .mobile-nav-link {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    /* Hero adjustments */
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 5rem 1rem 3rem;
    }

    #red {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .stations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    #red {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .stations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .station-buttons {
        flex-direction: column;
    }

    .station-btn {
        width: 100%;
    }

    /* Extra small devices - Mobile menu */
    header {
        padding: 0.6rem 0.75rem;
    }

    .menu-toggle {
        width: 32px;
        height: 32px;
    }

    .menu-toggle span {
        width: 16px;
    }

    .mobile-menu {
        min-width: 260px;
        max-width: 80vw;
        padding: 0.6rem 1.2rem;
    }

    .mobile-nav-links {
        gap: 0.5rem;
    }

    .mobile-nav-link {
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
    }

}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Delay classes for staggered animations */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Contact Button Special Style */
.btn-contact {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    background-color: #222222;
    color: #ffffff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: none;
    font-family: inherit;
    width: fit-content;
}

.btn-contact-text {
    margin-right: 1rem;
}

.btn-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-contact-icon svg {
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-contact:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-contact:hover .btn-contact-icon {
    background-color: transparent;
}

.btn-contact:hover .btn-contact-icon svg {
    transform: rotate(0deg) translateX(2px);
}

/* About Redesign */
.about-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
    overflow: hidden;
    max-width: 100% !important;
    /* Override standard section max-width to allow full-width slider */
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 0 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }
}

.about-pill {
    display: inline-block;
    background-color: #2a2a2e;
    color: var(--text-white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: none;
}

.about-heading {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
    color: var(--text-white);
    letter-spacing: -1.5px;
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 3rem;
    }
}

.about-text-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.about-mission-vision {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
}

.about-mission-vision p {
    font-size: 1rem;
    margin-bottom: 0;
}

.about-mission-vision strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Infinite Slider */
.infinite-slider-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 2rem 0;
    background: transparent;
}

.infinite-slider-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.infinite-slider-track:hover {
    animation-play-state: paused;
}

.slider-item {
    width: 450px;
    height: 450px;
    padding: 0 15px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
}

.slider-item:hover img {
    transform: scale(1.02);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .slider-item {
        width: 300px;
        height: 300px;
        padding: 0 10px;
    }
}

/* Services Redesign */
.services-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-container {
    text-align: center;
    margin-bottom: 4rem;
}

.services-heading {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.services-subheading {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    padding: 0 4rem;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

.services-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .services-main-image {
        height: 350px;
    }
}

.services-accordion-col {
    display: flex;
    flex-direction: column;
}

.services-accordion-col .collapsible {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.services-accordion-col .collapsible:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.services-accordion-col .collapsible-header {
    padding: 1.5rem 0 !important;
    font-size: 1.2rem !important;
    color: var(--text-white) !important;
    background: transparent !important;
    font-weight: 400 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.services-accordion-col .collapsible-header::after {
    content: '+' !important;
    font-size: 1.5rem !important;
    font-family: inherit !important;
    font-weight: 300 !important;
    color: var(--text-gray) !important;
    transition: transform 0.3s ease !important;
    margin-left: 0 !important;
    transform: none !important;
}

.services-accordion-col .collapsible.active .collapsible-header::after {
    transform: rotate(45deg) !important;
    color: var(--accent-aqua) !important;
}

.services-accordion-col .collapsible-content {
    background: transparent !important;
}

.services-accordion-col .collapsible-content-inner {
    padding: 0 0 1.5rem 0 !important;
}

.services-accordion-col .collapsible-content-inner p {
    color: var(--text-gray) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Premium Contact Section */
.contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
    padding: 0 4rem;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 2rem;
    }
}

.contact-info-col {
    display: flex;
    flex-direction: column;
}

.contact-heading {
    font-size: 3.5rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.contact-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 90%;
}

.contact-details-table {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.contact-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1rem;
}

.detail-label {
    font-weight: 600;
    color: var(--text-white);
}

.detail-value {
    color: var(--text-gray);
    text-align: right;
}

.socials-label {
    display: block;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-white);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-aqua);
}

/* Premium Form Card */
.premium-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.premium-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.premium-form-group label {
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.premium-form-group .required {
    color: #e53e3e;
    margin-left: 0.2rem;
}

.premium-form-group input,
.premium-form-group textarea {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    color: #1a1a1a;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    width: 100%;
}

.premium-form-group input::placeholder,
.premium-form-group textarea::placeholder {
    color: #a0aec0;
}

.premium-form-group input:focus,
.premium-form-group textarea:focus {
    border-color: #4a5568;
    box-shadow: 0 0 0 1px #4a5568;
}

.premium-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.premium-submit-btn {
    width: 100%;
    background-color: #4a4a4a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.premium-submit-btn:hover {
    background-color: #2d3748;
}

/* Premium List Card (Strategy style) */
.premium-list-card {
    background-color: #161616;
    border-radius: 12px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.plc-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plc-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: -1px;
    margin-top: 0;
}

.plc-title.serif {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -1.5px;
}

.plc-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #999999;
    margin-top: auto;
    padding-top: 4rem;
    max-width: 90%;
}

.plc-right {
    display: flex;
    flex-direction: column;
}

.plc-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plc-item:first-child {
    padding-top: 0;
}

.plc-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.plc-item h4 {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
}

.plc-item p {
    font-size: 0.95rem;
    color: #888888;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 968px) {
    .premium-list-card {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 2rem;
    }
    .plc-subtitle {
        padding-top: 2rem;
    }
}

@media (max-width: 768px) {
    .premium-list-card {
        padding: 1.25rem;
        gap: 1rem;
        margin: 1.5rem auto;
        border-radius: 8px;
    }
    .plc-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    .plc-subtitle {
        font-size: 0.9rem;
        padding-top: 1rem;
        line-height: 1.5;
    }
    .plc-item {
        padding: 0.75rem 0;
    }
    .plc-item h4 {
        font-size: 0.9rem;
    }
    .plc-item p {
        font-size: 0.8rem;
    }
}

/* Trabaja - Perfiles list */
.trabaja-perfiles {
    margin-top: 0.5rem;
}

/* Premium form select & file inputs */
.premium-form-card select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    color: #1a1a2e;
    outline: none;
    transition: border-color 0.3s;
    appearance: auto;
}

.premium-form-card select:focus {
    border-color: #4a4a4a;
}

.premium-form-card input[type="file"] {
    width: 100%;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: #4a4a4a;
    cursor: pointer;
}