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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Buttons */
.cta-button-hero,
.cta-button-final {
    background: #9d2621;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: none;
}

.cta-button-hero:hover,
.cta-button-final:hover {
    background: #A82620;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 46, 40, 0.4);
}

.cta-button-hero {
    font-size: 32px;
    margin-top: 25px;
}

.cta-button-final {
    padding: 14px 40px;
    font-size: 32px;
    text-decoration: none;
}

/* Aligned hero content and logo to left, adjusted padding difference */
/* Hero Section */
.hero {
    color: white;
    padding: 90px 0;
    position: relative;
    height: 930px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/img/Banner-1.jpg') center / cover;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1200px;
    width: 1200px;
}

.hero-content {
    text-align: left;
}

.hero-logo {
    margin-bottom: 20px;
    padding-left: 0;
}

.hero-logo img {
    height: 60px;
    width: auto;
}

.hero-text {
    padding: 10px 40px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
}

.hero-main {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    display: block;
}

.hero-text h1 {
    margin-bottom: 5px;
}

.highlight {
    color: #FFFFFF;
    font-family: 'Helvetica';
    font-weight: 100;
    letter-spacing: normal;
}

.renta {
    text-shadow: 0px 6px 6px black;
}

.hoy-mismo {
    font-family: 'Helvetica';
    font-weight: 600;
}

@media (max-width: 1420px) { 
    .hero {
        height: 700px;
    }
}

@media (min-width: 768px) {

    .hero-logo img {
        height: 80px;
    }

    .hero-text {
        padding-left: 120px;
    }

    .hero-subtitle {
        font-size: 64px;
    }

    .hero-main {
        font-size: 64px;
        font-weight: 800;
    }

    .highlight, .hoy-mismo {
        font-size: 58px;
    }
    
}

/* Worker Section */
.worker-section {
    background: white;
}

.worker-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
    z-index: 2;
    position: relative;
}

.worker-image-wrapper {
    width: 100%;
    max-width: 250px;
}

.worker-circle img {
    width: 100%;
}

.worker-message {
    max-width: 500px;
    text-align: center;
}

.message-title {
    color: #064787;
    font-size: 20px;
    font-weight: 700;
}

.message-text {
    color: #064787;
    font-size: 16px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .worker-section {
        padding: 40px 0 10px;
    }

    .worker-content {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
        align-items: center;
        margin-top: 0px;
    }

    .worker-image-wrapper {
        max-width: 360px;
    }

    .message-title {
        font-size: 36px;
    }

    .message-text {
        font-size: 36px;
    }
}

/* Features Section */
.features {
    background: white;
}

.features-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon img {
    width: 80px;
    height: 80px;
}

.feature-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: #064787;
}

.feature-text p {
    font-size: 36px;
    color: #064787;
}

.features-image {
    text-align: center;
}

.features-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

@media (min-width: 768px) {
    .features {
        padding: 10px 0;
    }

    .features-layout {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }

    .features-list {
        flex: 1;
        max-width: 600px;
    }

    .features-image {
        flex: 0 0 300px;
    }

    .features-image img {
        max-width: 300px;
    }
}

/* Changed background to white, moved title inside card, removed input borders, fixed submit button width */
/* Contact Form Section */
.contact-form-section {
    padding: 50px 0;
    background: white;
}

.form-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 40%);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-family: 'HelveticaNeue-CondensedBold';
    letter-spacing: 1px;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    font-size: 15px;
    transition: all 0.3s;
    background: #f7f7f7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #064787;
}

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

.submit-button {
    width: auto;
    background: #C42E28;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 20px auto 0;
}

.submit-button:hover {
    background: #A82620;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 46, 40, 0.3);
}

@media (min-width: 768px) {
    .contact-form-section {
        padding: 20px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .form-card {
        padding: 40px 35px;
    }
}

/* Process Section */
.process-section {
    padding: 50px 0 30px;
    background: white;
}

.process-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-image {
    text-align: center;
}

.process-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.process-header {
    text-align: center;
}

.section-title-alt {
    font-size: 32px;
    font-weight: 700;
    color: #064787;
    line-height: 1.2;
    margin-bottom: 15px;
}

.highlight-alt {
    color: #C42E28;
}

.section-subtitle {
    font-size: 16px;
    color: #064787;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .process-section {
        padding: 70px 0 40px;
    }

    .process-layout {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        justify-content: center;
    }

    .process-image {
        flex: 0 0 300px;
        order: -1;
    }

    .process-image img {
        max-width: 300px;
    }

    .process-content {
        flex: 1;
        max-width: 600px;
    }

    .process-header {
        text-align: left;
    }

    .section-title-alt {
        font-size: 52px;
    }

    .section-subtitle {
        font-size: 36px;
    }
}

/* Made process-steps independent section, carousel works on desktop too */
/* Process Steps Section */
.process-steps-section {
    padding: 0 0 50px;
    background: white;
}

.process-steps-wrapper {
    width: 100%;
}

.process-steps {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.process-steps::-webkit-scrollbar {
    display: none;
}

.step {
    align-items: flex-start;
    background: #c9dcff;
    padding: 25px 20px;
    border-radius: 10px;
    scroll-snap-align: center;
    text-align: center;
}

.step-number {
    width: 62px;
    height: 62px;
    background: #0071e1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D0D0D0;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #064787;
    width: 12px;
    height: 12px;
}

@media (min-width: 768px) {
    .process-steps-section {
        padding: 0 0 70px;
    }

    .process-steps {
        gap: 30px;
    }

    .step {
        flex: 0 0 calc(33.333% - 20px);
    }
}

/* Testimonials carousel works on desktop, added third card */
/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
    background: url('assets/img/Banner-testimoniales.jpg') center / cover;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-dark {
    font-size: 32px;
    font-weight: 700;
    color: #064787;
    line-height: 1.3;
    margin-bottom: 70px;
    font-family: 'HelveticaNeue-CondensedBold';
    letter-spacing: 1px;
    font-weight: 100;
}

.logo-inline {
    display: inline-block;
    vertical-align: middle;
}

.logo-inline img {
    height: 35px;
    width: auto;
    vertical-align: middle;
}

.section-subtitle-dark {
    font-size: 16px;
    line-height: 1.5;
}

.testimonials-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 90%;
    background: white;
    padding: 35px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    scroll-snap-align: center;
}

.quote-icon {
    font-size: 60px;
    color: #B3D9FF;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    line-height: 1.7;
    color: black;
    margin-bottom: 10px;
    text-align: center;
}

.testimonial-footer {
    border-top: 1px solid black;
    padding-top: 5px;
    text-align: center;
}

.testimonial-author {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 17px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 70px 0;
    }

    .section-title-dark {
        font-size: 42px;
    }

    .logo-inline img {
        height: 80px;
        margin-top: 15px;
    }

    .section-subtitle-dark {
        font-size: 32px;
    }

    .testimonials-carousel {
        gap: 35px;
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 23px);
    }

    .testimonial-text {
        font-size: 17px;
    }
}

/* Fixed layout: separate rows for text, images, footer text, and social icons */
/* Final CTA + Footer Section */
.final-cta-footer {
    padding: 50px 0 30px;
    background: #064787;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-background {
    position: absolute;
    top: 0;
    left: -1px;
    right: 0;
    bottom: 0;
    background: url(assets/img/Banner-final-.jpg) center / cover;
}

.final-cta-footer .container {
    position: relative;
    z-index: 1;
}

.final-cta-text {
    text-align: center;
}

.final-cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'HelveticaNeue-CondensedBold';
    letter-spacing: 3px;
}

.final-cta-text p {
    font-size: 17px;
    margin-bottom: 45px;
    line-height: 1.5;
}

.final-cta-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.final-cta-images img {
    width: 95%;
    height: auto;
}

.footer-text {
    margin-bottom: 20px;
}

.footer-text p {
    font-size: 28px;
    opacity: 0.9;
}

.privacy-link {
    color: white;
    text-decoration: none;
    font-size: 28px;
    opacity: 0.9;
    transition: opacity 0.3s;
    font-family: 'Helvetica';
}

.privacy-link:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    display: block;
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .final-cta-footer {
        padding: 70px 0 40px;
    }

    .final-cta-text {
        margin-bottom: 40px;
    }

    .final-cta-text h2 {
        font-size: 60px;
    }

    .final-cta-text p {
        font-size: 36px;
    }

    .final-cta-images {
        gap: 30px;
        margin-bottom: 60px;
    }

    .footer-text {
        text-align: center;
        margin-bottom: 25px;
    }

    .process-steps-section .carousel-dots, .testimonials-section .carousel-dots {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-logo {
        text-align: center;
    }

    .hero-logo img {
        height: 85px;
    }

    .hero-text {
        text-align: center;
        padding: 10px;
    }

    .hero-subtitle, .hero-main {
        font-size: 38px;
    }

    .cta-button-hero {
        padding: 10px;
        font-size: 28px;
    }

    .message-title, .message-text {
        font-size: 20px;
        line-height: 1.1;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

    .feature-text h3, .feature-text p {
        font-size: 18px;
    }

    .feature-item {
        gap: 10px;
        padding: 20px 0px;
    }

    .features-layout {
        flex-direction: row;
        gap: 0;
        align-items: center;
        justify-content: center;
    }

    .features-image img {
        max-width: 150px;
        margin-left: 10px;
    }

    .process-layout {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    .process-image img {
        max-width: 190px;
    }
    .section-title-alt {
        font-size: 24px;
    }

    .section-subtitle, .step-content h3, .step-content p {
        font-size: 20px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .logo-inline img {
        height: 45px;
        margin-top: 15px;
    }

    .section-title-dark {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .section-subtitle-dark {
        font-size: 20px;
    }

    .final-cta-text p {
        font-size: 24px;
        margin-top: 20px;
    }

    .cta-button-final {
        padding: 10px;
        font-size: 24px;
    }
    .footer-text {
        text-align: center;
    }
    .footer-text p {
        font-size: 18px;
    }

    .privacy-link {
        font-size: 18px;
    }

    .step {
        min-width: 250px;
    }
}

a.cta-button-hero {
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
    padding: 2px 15px;
}

body {
    font-family: Helvetica, sans-serif;
}

span, button, a {
    font-family:'HelveticaNeue-CondensedBold';
}

@font-face {
  font-family: 'HelveticaNeue';
  src: url('assets/fonts/HelveticaNeue-01.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeue-CondensedBold';
  src: url('assets/fonts/HelveticaNeue-CondensedBold-05.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}