* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif !important;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.logo-text {
    color: #1e3a52;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

.logo-text:hover {
    color: #d4a853;
    text-decoration: none;
}

.nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav a {
    color: #6c757d;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #d4a853;
    transition: all 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
    left: 0;
}

.hero-slogan {
    background: rgba(212, 168, 83, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
    text-align: left;
}

.nav a:hover {
    color: #495057;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

    position: relative;
    overflow: hidden;
}

.hero-full-width {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 600px;
    width: 100vw;
}

.hero-content-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 40px 80px 0px;
    max-width: 500px;
    margin-left: 0;
    padding-left: 0;
}

.hero-text {
    text-align: left;
    width: 100%;
    padding-left: 80px;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 1000;
    color: #d4a853;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.hero-text p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
    text-align: left;
}

.btn-primary {
    background: #d4a853;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #c19940;
}

.hero-image-right {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: 37%;
}

.hero-image-right img {

    min-height: 600px;
    object-fit: cover;
}

/* Section Titles */
.section-title {
    background: #1e3a52;
    color: #d4a853;
    text-align: center;
    padding: 60px 0;
    font-size: 36px;
    font-weight: bold;
}

.section-title-claro {
    background: white;
    color: #d4a853;
    text-align: center;
    padding: 60px 0;
    font-size: 36px;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.about-content::after {
    content: '';
    position: absolute;
    left: calc(25% - 1px);
    top: 0;
    bottom: 0;
    width: 3px;
    background: #d4a853;
    border-radius: 2px;
}

.about h2 {
    font-size: 32px;
    color: #1e3a52;
    margin-bottom: 30px;
    position: relative;
}

.about p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Stats Section */
.stats {
    background: #1e3a52;
    padding: 80px 0;
    color: white;
}

.para-que-sirve-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2),
                0 8px 25px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.para-que-sirve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.para-que-sirve-text {
    text-align: left;
}

.para-que-sirve-image {
    text-align: center;
}

/* Encuesta Section */
.encuesta-section {
    padding: 80px 0;
}

.encuesta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 20px;
}

.encuesta-card {
    background: rgba(212, 168, 83, 0.1);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(212, 168, 83, 0.3);
    backdrop-filter: blur(10px);
}

.encuesta-details {
    margin-top: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.detail-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    font-size: 48px;
    color: #d4a853;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #d4a853;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: white;
}

/* Event Agenda */
.agenda {
    padding: 80px 0;
    background: white;
}

.agenda h2 {
    text-align: center;
    font-size: 36px;
    color: #1e3a52;
    margin-bottom: 60px;
}

.agenda-timeline {
    position: relative;
    padding-left: 40px;
}

.agenda-timeline:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d4a853;
}

.agenda-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-left: 20px;
    position: relative;
}

.agenda-item:before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #d4a853;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #d4a853;
}

.agenda-time {
    font-size: 18px;
    font-weight: bold;
    color: #d4a853;
}

.agenda-content h3 {
    color: #d4a853;
    margin-bottom: 10px;
    font-size: 18px;
}

.agenda-content p {
    color: #6c757d;
    line-height: 1.6;
}

/* Registration Section */
.registration {
    background: #1e3a52;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.registration-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 60px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.registration-logo {
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 83, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #d4a853;
    font-weight: bold;
}

.registration h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.registration p {
    margin-bottom: 30px;
    font-size: 18px;
}

.registration-details {
    margin-bottom: 30px;
    font-size: 16px;
}

/* Tips Section */
.tips {
    padding: 80px 0;
    background: white;
}

.tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tips h2 {
    font-size: 32px;
    color: #1e3a52;
    margin-bottom: 20px;
}

.tips p {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.8;
}

.tips-list {
    list-style: none;
    margin-bottom: 30px;
}

.tips-list li {
    color: #6c757d;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.tips-list li:before {
    content: "✓";
    color: #d4a853;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.tips-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Companies Section */
.companies {
    background: #1e3a52;
    text-align: center;
}

/*.companies h2 {*/
/*    color: white;*/
/*    font-size: 36px;*/
/*    margin-bottom: 60px;*/
/*}*/

.company-logo {
    background: white;
    padding: 5px;
    border-radius: 15px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 15px;
}

.company-logo:hover {
    transform: translateY(-5px);
}

.company-logo span {
    font-weight: bold;
    color: #1e3a52;
    font-size: 16px;
}

.sponsor-logo {
    max-width: 100px;
    max-height: 80px;
    object-fit: contain;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px !important;
    height: 50px !important;
    background: #d4a853 !important;
    border-radius: 50% !important;
    opacity: 0.9 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.carousel-control-prev {
    left: -25px !important;
}

.carousel-control-next {
    right: -25px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #c19940 !important;
    opacity: 1 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px !important;
    height: 20px !important;
}

.carousel-indicators {
    margin-bottom: -40px !important;
}

.carousel-indicators [data-bs-target] {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: grey !important;
    border: none !important;
}

.carousel-indicators .active {
    background-color: #d4a853 !important;
}

.encuestadores-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    justify-items: center;
}

.tecnicos-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    justify-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.encuestador-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.encuestador-item:hover {
    transform: translateY(-5px);
}

.encuestador-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: block;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.encuestador-name {
    font-size: 14px;
    color: #1e3a52;
    font-weight: bold;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
    }

    .hero-full-width {
        grid-template-columns: 1fr;
        min-height: auto;
        width: 100%;
        margin-left: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-content-left {
        padding: 40px 20px;
        max-width: none;
        margin-left: 0;
        justify-content: center;
        order: 1;
        width: 100%;
    }

    .hero-text {
        text-align: center;
        padding-left: 0;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 42px;
        text-align: center;
        line-height: 1.1;
    }

    .hero-text p {
        text-align: center;
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-slogan {
        text-align: center;
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-image-right {
        order: 2;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero-image-right img {
        height: 250px;
        min-height: 250px;
        width: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .encuestadores-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tecnicos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .encuestador-foto {
        width: 80px;
        height: 80px;
    }

    .encuestador-name {
        font-size: 12px;
    }

    .map-container iframe {
        height: 300px;
    }

    .contact-map {
        margin-top: 40px;
    }
}

/* Mobile small breakpoint */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-content-left {
        padding: 30px 15px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-slogan {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-image-right img {
        height: 200px;
        min-height: 200px;
    }

    .map-container iframe {
        height: 250px;
    }

    .contact-map h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-text h1 {
        font-size: 60px;
    }

    .hero-content-left {
        padding: 60px 30px 60px 15px;
    }

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #4a6fa5 0%, #1e3a52 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* FAQ Section */
.faq {
    background: #e3f2fd;
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    color: #1e3a52;
    margin-bottom: 20px;
}

.faq-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 60px;
    font-size: 18px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #1e3a52;
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Contact Information */
.contact-info {
    background: #1e3a52;
    padding: 80px 0 40px 0;
    color: white;
}

.contact-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 83, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #d4a853;
}

.contact-item h3 {
    color: #d4a853;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-item p {
    color: white;
    font-size: 16px;
}

/* Contact Map */
.contact-map {
    margin-top: 60px;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
}

/* Footer Section */
.footer-section {
    background: #1e3a52;
    padding: 40px 0 20px 0;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 14px;
}

.footer-nav a:hover {
    color: #d4a853;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    color: #d4a853;
    font-weight: bold;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #d4a853;
    color: white;
    transform: scale(1.1);
}
a.contact-mail {
    color: white;
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}
/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .logo-container {
        justify-content: center;
    }

    .logo-container img {
        height: 50px;
    }

    .logo-text {
        font-size: 16px;
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav a {
        margin: 0;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
        .hero-content,
        .about-content,
        .tips-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .about-content::after {
            display: none;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .companies-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .faq-grid {
            grid-template-columns: 1fr;
        }

        .agenda-item {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .hero-text h1 {
            font-size: 36px;
        }

        .para-que-sirve-content {
            padding: 30px;
            border-radius: 20px;
        }

        .para-que-sirve-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .para-que-sirve-text {
            text-align: center;
        }

        .encuesta-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .encuesta-card {
            padding: 25px;
            border-radius: 15px;
        }

        .detail-item {
            padding: 12px;
            flex-direction: column;
            text-align: center;
        }

        .detail-item:hover {
            transform: translateY(-5px);
        }

        .detail-icon {
            margin-right: 0;
            margin-bottom: 10px;
        }

        .contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-nav a {
            margin: 0 10px;
            font-size: 12px;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 20px;
        }

        .social-icons {
            justify-content: center;
        }

        .footer-copyright p {
            font-size: 12px;
        }

        .stat-item:not(:last-child):after {
            display: none;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
        }

        .carousel-control-prev {
            left: 5px;
        }

        .carousel-control-next {
            right: 5px;
        }
    }

/* Nuevas clases para reemplazar estilos inline */

/* Hero title styles */
.hero-title-cuenca {
    color: black !important;
    font-weight: bold !important;
}

.hero-title-como {
    color: #C70B1D !important;
    font-weight: 1000 !important;
}

.hero-title-vamos {
    color: #FFC403 !important;
    font-weight: 1000 !important;
}

/* Companies section white background */
.companies-white-bg {
    background: white !important;
}



.companies-description {
    color: #6c757d !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    font-size: 18px !important;
}

.companies-footer-text {
    color: #6c757d !important;
    text-align: center !important;
    margin-top: 40px !important;
    font-size: 18px !important;
}

/* Para que sirve section styles */
.para-que-sirve-title {
    text-align: center !important;
    color: #d4a853 !important;
    font-size: 36px !important;
    margin-bottom: 40px !important;
}

.para-que-sirve-text-content {
    color: white !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
}

.para-que-sirve-text-content-last {
    color: white !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
}

.para-que-sirve-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

/* Encuesta section styles */
.encuesta-section-bg {
    background: #1e3a52 !important;
}

.encuesta-title {
    text-align: center !important;
    color: #d4a853 !important;
    font-size: 36px !important;
    margin-bottom: 40px !important;
}

.encuesta-description {
    color: white !important;
    text-align: center !important;
    font-size: 18px !important;
    margin-bottom: 50px !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.encuesta-card-title {
    color: #d4a853 !important;
    font-size: 24px !important;
    margin-bottom: 20px !important;
}

.encuesta-card-title .date-highlight {
    color: #d4a853 !important;
    font-weight: bold !important;
}

.detail-item-text {
    color: white !important;
}

.detail-item-text strong {
    color: #d4a853 !important;
}

.encuesta-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
}

/* Encuestadores section styles */
.encuestadores-section-bg {
    background: hsl(206.4deg 73.53% 86.67%) !important;
}

.encuestadores-main-title {
    text-align: center !important;
    color: #1e3a52 !important;
    margin-bottom: 40px !important;
}

.encuestadores-subtitle {
    text-align: center !important;
    color: #1e3a52 !important;
    margin-bottom: 20px !important;
    font-size: 24px !important;
}

.encuestadores-subtitle-tecnico {
    text-align: center !important;
    color: #1e3a52 !important;
    margin-top: 60px !important;
    margin-bottom: 20px !important;
    font-size: 24px !important;
}

.encuestadores-description {
    text-align: center !important;
    color: #1e3a52 !important;
    margin-bottom: 40px !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.tecnicos-description {
    text-align: center !important;
    color: #1e3a52 !important;
    margin-bottom: 40px !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 16px !important;
}

/* CTA section with background image */
.cta-bg-image {
    background: linear-gradient(rgba(30, 58, 82, 0.8), rgba(30, 58, 82, 0.8)), url('../images/IMAGEN-2-WEB.jpg') center/cover !important;
}

.cta-intro-text {
    color: white !important;
    font-size: 18px !important;
    margin-bottom: 10px !important;
}

.cta-main-title {
    color: #d4a853 !important;
    font-size: 42px !important;
    margin-bottom: 20px !important;
    font-weight: bold !important;
}

.cta-description {
    color: white !important;
    font-size: 18px !important;
    margin-bottom: 30px !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Contact section styles */
.contact-section-title {
    color: #d4a853 !important;
}

.contact-map-title {
    color: #d4a853 !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    font-size: 24px !important;
}

.contact-map iframe {
    border: 0 !important;
}

/* Footer styles */
.footer-logo-cuenca {
    color: #C70B1D !important;
}

.footer-logo-como {
    color: #C70B1D !important;
}

.footer-logo-vamos {
    color: #FFC403 !important;
}
