/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* Reset and Base Styles */
:root {
    --primary-color: #709DBE;
    --text-white: #ffffff;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    overflow-y: scroll; /* Ensure the body can scroll */
}

/* Services Section Styles */
.services {
    padding: 60px 20px; /* Padding for the services section */
    background-color: #f8f9fa; /* Light background for contrast */
}

.services h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 40px; /* Space below the heading */
}

/* Service Row Styles */
.service-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px; /* Space between service rows */
}

.service-row.reverse {
    flex-direction: row-reverse; /* Reverse layout for alternating rows */
}

/* Content Side Styles */
.content-side {
    flex: 1;
    padding: 20px; /* Padding for content */
}

/* Service Content Styles */
.service-content {
    background: white; /* White background for service content */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding inside the service content */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Image Side Styles */
.image-side {
    flex: 1;
    overflow: hidden; /* Hide overflow for images */
}

.image-side img {
    width: 100%; /* Full width for images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners for images */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-row {
        flex-direction: column; /* Stack services on smaller screens */
    }

    .content-side,
    .image-side {
        width: 100%; /* Full width for both sides */
    }
} 

/* Hero Section Styles */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/services/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero-content {
    text-align: center;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 70px;
    width: 800px;
    line-height: 0.9;
    margin-bottom: 12px;
}

.hero-content p {
    width: 800px;
    font-size: 1.2rem;
    margin-bottom: 2px;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 30px;
        width: 100%;
        max-width: 600px;
    }
    .hero-content p {
        width: 100%;
        max-width: 500px;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 0 20px;
    }
    .hero-content h1 {
        font-size: 20px;
    }
    .hero-content p {
        font-size: 16px;
    }
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 14px;
    background-color: transparent;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--text-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 20px;
    width: fit-content;
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 60px;
        width: 600px;
    }
    .hero-content p {
        width: 500px;
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .hero-content{
        padding: 0 40px;
    }
    .hero-content h1 {
        font-size: 30px;
        width: 100%;
    }
    .hero-content p {
        width: 100%;
        font-size: 14px;
    }
}

/* New Layout Styles */
.new-layout {
    padding: 60px 20px; /* Padding for the new layout section */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    background-color: white; /* Change background to white */
}

.new-layout h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px; /* Space below the heading */
}

.sub-title {
    text-align: center;
    width: 800px;
    font-size: 22px;
    margin-bottom: 40px; /* Space below the paragraph */
}

.new-layout p {
    text-align: center;
    font-size: 22px;
    margin-bottom: 40px; /* Space below the paragraph */
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align items at the start */
    width: 100%; /* Ensure it takes full width */
    padding: 20px; /* Padding for the container */
    box-sizing: border-box; /* Include padding in width calculation */
}

.points-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    padding: 20px;
    width: 50%;
}

.point {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.point .number {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: none;
}

.point h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.point p {
    font-size: 1rem;
    text-align: left;
}

/* Nuevo contenedor para el botón */
.points-cta {
    grid-column: 1 / -1; /* Ocupa todas las columnas */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.image-container {
    display: flex;
    justify-content: center; /* Center the image */
    align-items: center; /* Center the image */
    width: 50%; /* Ensure it takes up half the width */
    position: relative;
    height: 800px; /* Set a fixed height */
    background-image: url('img/inicio/1.png'); /* Background image */
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background image */
    border-radius: 10px; /* Rounded corners */
    will-change: background-position; /* Optimize for performance */
}

/* Parallax effect */
body {
    overflow-y: scroll; /* Ensure the body can scroll */
}



/* Optional: Add a smooth transition for the parallax effect */
@media (max-width: 900px) {
    .image-container {
        background-attachment: scroll; /* Disable parallax on smaller screens */
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .flex-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
    }

    .points-container,
    .image-container {
        width: 100%; /* Full width for both sides */
    }

    .new-layout p {
        width: 100%;
        font-size: 16px;
    }
}

.cta-button-blue {
    display: inline-block;
    padding: 12px 25px;
    font-size: 14px;
    background-color: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    margin-top: 20px;
    width: fit-content;
}

.cta-button-blue:hover {
    border: solid 2px black;
    box-sizing: border-box;
    background-color: darken(var(--primary-color), 10%); /* Darken on hover */
}


@media (max-width: 1600px) {
    .flex-container {
        flex-direction: column;
    }

    .points-container {
        width: 100%;
    }

    .image-container {
        width: 100%;
        height: 500px;
        background-position: top;
    }
}

@media screen and (max-width: 900px) {
    .new-layout {
        padding: 20px;
        padding-top: 100px;
    }
    .new-layout h2 {
        font-size: 30px;
    }
    .sub-title {
        width: 80%;
        font-size: 12px;
    }

    .flex-container {
        flex-direction: column;
        padding: 0;
    }
    .points-container{
        display: flex;
        flex-direction: column;
        padding: 0;
        width: 100%;
    }

    .point {
        width: 100%;
    }
}

.navbar {
    position: absolute !important; /* !important para sobrescribir el fixed */
    width: 100%;
    padding: 2.5rem 0;
    z-index: 10000;
    background: transparent;
    transition: var(--transition);
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
        padding-top: 40px;
        margin-top: 0;
        position: absolute !important; /* Asegurar que se mantenga absolute en móvil */
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
        padding-top: 40px;
        margin-top: 0;
        position: absolute !important;
    }
}

/* Drag Container Styles */
.drag-container {
    padding: 60px 20px 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-white);
    position: relative; /* Added for arrow positioning */
}

.drag-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color:white;
    margin-bottom: 30px;
}

.drag-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 15px; /* Reduced margin */
}

.drag-scroll::-webkit-scrollbar {
    display: none;
}

.service-item {
    min-width: 500px;
    margin: 0 20px;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}

.service-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-item img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0; /* Removed bottom margin since we don't have button */
}

/* Scroll indicators */
.scroll-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px; /* Increased gap between dots */
    margin: 20px 0 30px; /* Adjusted margins */
}

.scroll-dot {
    width: 12px; /* Increased dot size */
    height: 12px; /* Increased dot size */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-dot.active {
    background-color: white;
    width: 14px; /* Slightly larger for active dot */
    height: 14px; /* Slightly larger for active dot */
}

/* Remove the CTA container styles since we're removing the button */
.cta-container {
    display: none;
}

@media (max-width: 1600px) {
    .service-item {
        min-width: 400px;
    }
}

@media (max-width: 600px) {
    .drag-container {
        padding: 40px 15px 20px; /* Reduced padding */
    }

    .service-item {
        min-width: 300px;
        margin: 0 12px;
        padding: 10px;
    }

    .service-item img {
        height: 180px;
    }

    .service-item h3 {
        font-size: 1.2rem;
        margin: 8px 0;
    }

    .service-item p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0; /* Removed bottom margin */
    }

    .drag-container h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .scroll-dot {
        width: 10px; /* Slightly smaller on mobile but still larger than before */
        height: 10px;
    }

    .scroll-dot.active {
        width: 12px;
        height: 12px;
    }
}

/* Info Section Styles */
.info-section {
    padding: 100px 20px; /* Padding for the info section */
    background-color:white; /* Light background color */
    text-align: center; /* Center text */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.info-container {
    width: 800px;
    margin-bottom: 40px; /* Space below the title and subtitle */
}

.info-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.info-container p {
    font-size: 1.2rem; /* Subtitle size */
    text-align: center;
    color: #333; /* Darker text color */
}

.info-row {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: center; /* Center items */
    gap: 0; /* No margin between items */
    margin-bottom:30px;
}

.info-item {
    flex: 1 1 30%; /* Flex-grow, flex-shrink, and basis */
    padding: 40px 20px; /* Padding inside each item */
    background: white; /* White background for each item */
    border-radius: 0px; /* Rounded corners */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border: solid 2px var(--primary-color);
    text-align: left; /* Align text to the left */
}

.info-item .number {
    font-size: 2rem; /* Size for the number */
    color: var(--primary-color); /* Color for the number */
    margin-bottom: 10px; /* Space below the number */
    display: none;
}

.info-item h3 {
    font-size: 1.5rem; /* Title size */
    margin-bottom: 10px; /* Space below the title */
}

.info-item p {
    font-size: 1rem; /* Description size */
}

/* Responsive Styles */
@media (max-width: 800px) {
    .info-item {
        flex: 1 1 100%; /* Full width on smaller screens */
    }
    .info-container {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .info-container h2 {
        font-size: 2rem;
    }
    .info-container p {
        font-size: 14px;
    }
    .info-item {
        padding: 25px;
    }
    .info-item .number {
        font-size: 1.5rem;
    }
    .info-item h3 {
        font-size: 1.2rem;
    }
    .info-item p {
        font-size: 0.8rem;
    }
}

.cta-button-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white; /* White background */
    color: var(--primary-color); /* Blue text */
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color); /* Blue border */
    margin-top: 10px; /* Space above the button */
}

.cta-button-white:hover {
    background-color: darken(white, 10%); /* Darken on hover */
}

/* Main Section Styles */
.main-section {
    padding: 60px 20px; /* Padding for the main section */
    text-align: center; /* Center text */
}

.main-container {
    margin-bottom: 40px; /* Space below the title and subtitle */
}

.main-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.main-container p {
    font-size: 1.2rem; /* Subtitle size */
    color: #333; /* Darker text color */
}

.flex-row {
    display: flex;
    justify-content: space-between; /* Space between items */
    flex-wrap: wrap; /* Allow wrapping */
}

.flex-item {
    flex: 1 1 50%; /* 50% width for flex items */
    margin: 10px; /* Space between items */
    background: white; /* White background for each item */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding inside each item */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: left; /* Align text to the left */
}

.flex-item img {
    width: 100%; /* Full width for images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
}

.flex-item h3 {
    font-size: 1.5rem; /* Title size */
    margin: 10px 0; /* Space above and below the title */
}

.flex-item p {
    font-size: 1rem; /* Description size */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .flex-item {
        flex: 1 1 100%; /* Full width on smaller screens */
    }
}

/* Additional Services Section Styles */
.additional-services {
    padding: 100px 20px;
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #333;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.content-side {
    flex: 1;
}

.service-content {
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-content .number {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.service-link {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    transform: translateX(10px);
}

.image-side {
    flex: 1;
}

.image-side img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 900px) {
    .service-row {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .service-row.reverse {
        flex-direction: column;
    }

    .content-side,
    .image-side {
        width: 100%;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }
}


/* === serv rep -- == */

.rep-service{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0 30px 0;
    overflow: hidden;
    background-color: white;
}

.rep-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.rep-title{
    color: var(--primary-color);
    font-size: 45px;
}

.rep-sub{
    width: 700px;
    font-size: 16px;
}

.rep-row{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.rep-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    box-sizing: border-box;
    position: relative;
    height: 500px;
}

.rep-h2{
    width: 400px;
    font-size: 40px;
    color: white;
    line-height: 1.1;
}

.rep-p{
    width: 500px;
    font-size: 16px;
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.rep-right{
    width: 50%;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.rpr1{
    background-image: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8bGVnYWx8ZW58MHx8MHx8fDA%3D');
    background-position: center;
    background-size: cover;
}

.rpr2{
    background-image: url('https://images.unsplash.com/photo-1554224155-1696413565d3?auto=format&fit=crop&w=1600&q=80');    
    background-position: center;
    background-size: cover;
}

.rpr3{
    background-image: url('img/services/18.png');    

}

.rpr4{
    background-image: url('img/services/19.png');    
}

.rpr5{
    background-image: url('img/services/22.png');    
}
.rpr6{
    background-image: url('img/services/23.png');    
}
@media (max-width:1300px) {
    .rep-left{
        padding-left: 40px;
    }

    .rep-h2{
        font-size: 35px;
        width: 350px;
    }

    .rep-p{
        font-size: 14px;
        width: 300px;
    }
}

@media (max-width:900px) {
    .rep-left{
        padding: 40px 20px;
        width: 100%;
        justify-content: center;
        align-items: center;
        height: 400px;
        text-align: center;
    }

    .rep-h2{
        font-size: 50px;
        width: 400px;
        text-align: center;
        margin: 0 auto;
    }

    .rep-p{
        font-size: 14px;
        width: 400px;
        text-align: center;
        margin: 10px auto;
    }

    .rep-right{
        width: 100%;
        height: 400px;
    }

    .rep-row{
        flex-direction: column;
        margin-top: 0;
        align-items: center;
    }
    
    .reprow2{
        flex-direction: column-reverse;
    }

    .rep-title{
        width: 400px;
        font-size: 40px;
        line-height: 1;
        text-align: center;
    }

    .rep-sub{
        font-size: 14px;
        width: 400px;
        margin: 14px auto;
        text-align: center;
    }
}

@media (max-width:450px) {
    .rep-title{
        width: 320px;
        font-size: 35px;
        line-height: 1;
    }

    .rep-sub{
        font-size: 12px;
        width: 320px;
        margin: 14px auto;
    }

    .rep-h2{
        font-size: 30px;
        width: 300px;
        margin: 0 auto;
    }

    .rep-p{
        font-size: 12px;
        width: 300px;
        margin: 10px auto;
    }

    .rep-head-change-phone{
        background-color: var(--primary-color);
        margin-top: 0;
        margin-bottom: 0;
        padding: 30px 0;
        color: white;
    }

    .rep-head-change-phone h1{
        color: white;
    }

    .repRowphone{
        margin-bottom: 0;
    }

}

/* == tech == */
.tech{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px 0;
}

.header-tech{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:20px;
    text-align: center;
    width: 100%;
}

.title-tech{
    margin-top: 20px;
    font-size: 70px;;
    color: var(--primary-color);
}

.sub-tech{
    width: 700px;
}

.tech-row{
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
    align-items: center;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.mini-tech{
    margin-top: 50px;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.tech-logo-container{
    width: 100px;
    height: 100px;
    background-color:rgb(229, 229, 229);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-logo{
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(img/valores.png);
}

.tech-p{
    font-size: 14px;
    width: 70%;
}

@media (max-width:940px) {
    .title-tech{
        font-size: 40px;
        width: 500px;
    }
}


@media (max-width:700px) {
    .title-tech{
        font-size: 40px;
        width: 300px;
        line-height: 1;
        margin-bottom: 21px;
    }

    .sub-tech{
        font-size: 14px;
        width: 300px;
    }

    .tech{
        margin-top: 0;
        padding-top: 0;
        padding-bottom:30px;
    }

    .tech-p{
        font-size: 12px;
    }
}

.footer {
    margin-top: 200px;
}

/* Contenedor para los indicadores de scroll */
.scroll-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px; /* Increased gap between dots */
    margin: 20px 0 30px; /* Adjusted margins */
}

.scroll-dot {
    width: 12px; /* Increased dot size */
    height: 12px; /* Increased dot size */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-dot.active {
    background-color: white;
    width: 14px; /* Slightly larger for active dot */
    height: 14px; /* Slightly larger for active dot */
}

/* Alternativa: Flechas de scroll */
.scroll-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px 0;
}

.scroll-arrow {
    color: #709DBE; /* Cambiado al nuevo color */
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.scroll-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* También necesitamos cambiar cualquier uso directo del color */
.new-layout[style*="background-color: #003366"] {
    background-color: #709DBE !important;
}

/* Si hay algún otro elemento que use el color directamente */
[style*="background-color: var(--primary-color)"],
[style*="background-color: #003366"] {
    background-color: #709DBE !important;
}

.tchLogo1 {
    background-image: url('img/orientacion.png');
}

.tchLogo2 {
    background-image: url('img/asesoria.png');
}

.tchLogo3 {
    background-image: url('img/programas.png');
}

.logo-placeholder {
    width: 150px;
    height: 60px;
    background-image: url('img/imagotipoWhite.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: var(--transition);
}

.navbar.scrolled .logo-placeholder {
    background-image: url('img/imagotipoBlue.png');
}

/* Ajustes para móvil */
@media screen and (max-width: 768px) {
    /* ... otros estilos existentes ... */

    .navbar {
        padding: 0.5rem 0;
        padding-top: 40px;
        margin-top: 0;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
        padding-top: 40px;
        margin-top: 0;
    }

    .logo-placeholder {
        margin-top: 0;
        width: 100px;
        height: 40px;
    }

    .burger {
        margin-top: 0;
    }

    .nav-menu {
        top: 0;
    }

    .hero {
        height: 100vh;
    }
}

@media (max-width:500px) {
    .repRowFinal{
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .footer{
        margin-top: 0;
    }
}

/* Navigation Arrows */
.drag-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: white;
    font-size: 20px;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.drag-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.drag-nav-arrow.prev {
    left: 20px;
}

.drag-nav-arrow.next {
    right: 20px;
}

@media (max-width: 768px) {
    .drag-nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .drag-nav-arrow.prev {
        left: 10px;
    }
    
    .drag-nav-arrow.next {
        right: 10px;
    }
}

.repRowFinal{
    padding-bottom: 0;
}

.footer{
    margin-top: 0;
}

/* Financial Strategies Section */
.financial-strategies {
    padding: 100px 20px;
    background-color: white;
    overflow: hidden;
}

.strategies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.strategies-container h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.strategy-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.strategy-content {
    padding: 40px;
    flex: 1;
    background-color: var(--primary-color);
    color: white;
}

.strategy-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.strategy-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: white;
}

.strategy-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.strategy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.strategy-card:hover .strategy-image img {
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .strategy-content {
        padding: 30px;
    }
    
    .strategy-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .financial-strategies {
        padding: 60px 15px;
    }
    
    .strategies-container h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .strategy-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .strategy-content {
        padding: 25px;
    }
    
    .strategy-content h3 {
        font-size: 1.3rem;
    }
    
    .strategy-content p {
        font-size: 0.9rem;
    }
    
    .strategy-image {
        height: 200px;
    }
}