/* ==========================================================================
   Parallax Starter - Free HTML CSS Template
   
TemplateMo 612 Parallax Starter

https://templatemo.com/tm-612-parallax-starter

   ========================================================================== */

/* --- CSS Variables --- */

:root {
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --nav-bg: rgba(0, 0, 0, 0.25);
    --nav-bg-scrolled: rgba(0, 0, 0, 0.85);
    --transition-smooth: 0.3s ease;
    --primary: #FF6A00;
    --primary-light: #ff8533;
    --dark: #000000;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}
.whatsappIcon{
    width: 4rem;
    height: 3rem;
    margin-right: 0.5rem;
}
img {
    max-width: 100%;
    display: block;
}

/* --- Navigation --- */
#templatemo-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--transition-smooth);
}

#templatemo-nav.scrolled {
    background: var(--nav-bg-scrolled);
}

.nav-container {
    min-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8rem;
}

.logoOcam{
    height: 5rem;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: var(--white-70);
    transition: color var(--transition-smooth), opacity var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-smooth);
}

/* --- Parallax Sections --- */
.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Parallax Background Image Layer
   Height is 200% and starts at top: -50% to give
   maximum room for large vertical translations */
.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}
.parallax-bg-2{
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 200%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}



/* Dark Overlay */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.parallax-overlay.overlay-dark {
    background: rgba(0, 0, 0, 0.55);
}

.parallax-overlay.overlay-medium {
    background: rgba(0, 0, 0, 0.50);
}

/* Content Layer */
.section-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    padding: 100px 30px;
    text-align: center;
}
.section-content-contact{
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    padding: 100px 30px;
}

.section-content-principal{
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
}
/* COMPANYS */
.logo-slider {
   position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 25s linear infinite;

    align-items: center;
}

/* ESTILO DE TEXTO */
.logo-track span {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--white-70);
    white-space: nowrap;
    transition: 0.3s;
}

.logo-track span:hover {
    color: var(--primary);
}

/* ANIMACIÓN INFINITA */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* --- Typography --- */
.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title {
    font-weight: 400;
    letter-spacing: 12px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.6vw, 16px);
    letter-spacing: 4px;
    color: var(--white-70);
    margin-bottom: 40px;
}

.caps {
    text-transform: uppercase;
}

.content-block {
    max-width: 680px;
    margin: 0 auto;
}

.content-block p {
    font-size: 17px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

/* --- Hero Button --- */
.btn-scroll {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    border: 1px solid var(--white-40);
    padding: 14px 45px;
    transition: all var(--transition-smooth);
}
/* .btn-scroll-talent{
     display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    background-color: #f36b0a;
    border: 1px solid var(--white-40);
    padding: 14px 45px;
    transition: all var(--transition-smooth);   
} */
 .socials-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ITEM */
.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

/* ICONO (CÍRCULO PRO) */
.social-item svg {
    width: 70px;
    height: 70px;
    padding: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

/* TEXTO */
.social-item span {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #ccc;
    transition: 0.3s;
}

.social-item:hover svg {
    background: linear-gradient(135deg, #ff7a00, #ff9a2f);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.712);
}

.social-item:hover span {
    color: #ff7a00;
    transform: translateY(-4px);
}
.btn-scroll-contactUs{
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    background: linear-gradient(135deg, #ff6a00, #ff9a3c);
    border: none;
    padding: 14px 45px;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    width: 30vw;
    margin: 1rem;
    justify-content: center;
    border-radius: 0.3rem;
}
.btn-scroll-contactUs:hover {
    background: linear-gradient(135deg, #ff8533, #ff6a00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
  
}
.contact-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.overlay-dark {
    background: rgba(0,0,0,0.75);
}

.container-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 1rem;
    position: relative;
    z-index: 2;
}

.contact-left {
    max-width: 600px;
    color: white;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-benefits li {
    margin-bottom: 10px;
    font-size: 16px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6a00, #ff9a3c);
    color: white;
    padding: 1rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;

    margin: 0.5rem;
    max-width: 100%;
}

.btn-contact:hover {
    background: #ff8c1a;
}

.contact-right {
    width: 40%;
}
.btn-scroll-talent {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    background: linear-gradient(135deg, #ff6a00, #ff9a3c);
    border: none;
    padding: 14px 45px;
    transition: all var(--transition-smooth);
}

.btn-scroll-talent:hover {
    background: linear-gradient(135deg, #ff8533, #ff6a00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}
.btn-scroll:hover {
    background: var(--primary);
    color: #111;
    border-color: var(--primary);
}



.section-title-hero-title{
    color: #f36b0a;
    background-color: #ff7b0023;
    border-top:1px solid #ff7b00fd;
    border-bottom:1px solid #ff7b00fd;
    max-width: 35vw;
}

/* --- About Columns --- */
.unsplash-credit {
    font-size: 14px;
    color: var(--white-40);
    margin-top: 25px;
    letter-spacing: 1px;
}

.unsplash-credit a {
    color: var(--white-70);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.about-subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #FF6A00; /* naranja OCAM 🔥 */
}

.checklist-carousel p {
    position: relative;
    padding-left: 22px;
    margin: 8px 0;
    font-size: 1rem;
    text-align: left;
}

/* bolita naranja */
.checklist-carousel p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}
.checklist-carousel{
    display: flex;
    flex-direction: column;
    background-color: #a2a2a230;
    margin: 1rem 0rem;
}
.about-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.whatsapp-container{
    display: flex;
    flex-direction: row;
    margin-bottom: 0.5rem;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    text-align: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100%;
}

.carousel-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: #FF6A00;
    font-size: 30px;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 100;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.about-subtitle {
    color: #FF6A00;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-col {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
    flex-direction: column;
    align-items: center;
}

.about-thumb {
    overflow: hidden;
    width: 120px;
    height: 120px;
    border-radius: 8px;
}

.about-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-top-left {
    float: left;
    margin: 0 20px 15px 0;
}

.about-thumb-wide {
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 2 / 1;
    border-radius: 2px;
    margin-bottom: 20px;
}

.about-thumb-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-col p {
    font-size: 16px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-col p:last-child {
    margin-bottom: 0;
}

.about-col a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.socials-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-family: 'Oswald', sans-serif;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-item span {
    font-size: 12px;
    letter-spacing: 2px;
}

.social-item:hover {
    transform: translateY(-5px);
    opacity: 0.7;
}
/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
}

.service-icon {
    margin-bottom: 20px;
    opacity: 0.85;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: var(--white);
}

.service-item p {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white-70);
    line-height: 1.9;
}

/* --- Stats Row --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid var(--white-20);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}
.image-frame {
    margin-top: 0.5rem;
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
}

/* IMAGEN */
.image-frame img {
    display: block;
    width: 100%;
    border-radius: 8px;
    max-height:350px;
}

/* MARCO NARANJA */
.image-frame::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    border: 2px solid #ff6a00;
    z-index: 2;
}

/* GLOW (LO QUE LO HACE PRO) */
.image-frame::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 12px;
    filter: blur(15px);
    z-index: 1;
}
.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--white-70);
}
.section-content-principal{
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* --- Contact Form --- */
.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--white-20);
    padding: 16px 20px;
    outline: none;
    transition: border-color var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--white-40);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--white-70);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white-40);
    padding: 16px 45px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* --- Footer --- */
#templatemo-footer {
    background: #111;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    color: var(--white-40);
    letter-spacing: 1px;
}

#templatemo-footer a {
    color: var(--white-70);
    transition: color var(--transition-smooth);
}

#templatemo-footer a:hover {
    color: var(--white);
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESULTS CAROUSEL ===== */
.results-carousel {
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}


.results-track {
    display: flex;
    transition: transform 0.5s ease;
}

.results-item {
    min-width: 100%;
    text-align: center;
}

.results-item .stat-number {
    font-size: 60px;
    font-family: var(--font-heading);
    color: #ff7a00;
    display: block;
    margin-bottom: 15px;
}

/* DOTS */
.results-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #ff7a00;
    transform: scale(1.2);
}
/* ===================================
   Responsive
   =================================== */

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stats-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }
    .btn-scroll-contactUs {
        width: 11.5rem;
        padding: 1rem;
        margin: 0.5rem 0.5rem;
}

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        padding: 100px 30px 60px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 4px;
    }
.logoOcam{
    height: 3rem;
}
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
.section-title-hero-title{
        color: #f36b0a;
        background-color: #ff7b0023;
        border-top: 1px solid #ff7b00fd;
        border-bottom: 1px solid #ff7b00fd;
        max-width: 100vw;
        margin: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
}
    /* Disable parallax on mobile — static bg */
    .parallax-bg {
        top: 0;
        height: 100%;
    }
    .parallax-bg-2 {
        top: 0;
        height: 100%;
    }
    .section-title {
        letter-spacing: 4px;
    }

    .hero-title {
        letter-spacing: 6px;
    }

    .section-subtitle {
        letter-spacing: 2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-cols {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .btn-submit {
        align-self: stretch;
    }
    .nav-container {
    min-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6rem;
}
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
        min-width: auto;
    }

    .section-content {
        padding: 80px 20px;
    }

    .section-title {
        letter-spacing: 3px;
    }

    .content-block p {
        font-size: 15px;
    }

    .stat-number {
        font-size: 34px;
    }
}
