* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f5f0;
    color: #3a2a18;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Georgia', serif;
    color: #40301e;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #5a7052;
    transition: all 0.3s ease;
}

a:hover {
    color: #8b4513;
}

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

.btn {
    display: inline-block;
    background-color: #5a7052;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #465a40;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
}

/* HEADER */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3a2a18;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #3a2a18;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    color: #3a2a18;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8b4513;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('./img/portadaweb.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    font-size: 1.3rem;
    padding: 18px 50px;
    background-color: #5a7052;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 2px;
}

.btn-hero:hover {
    background-color: #465a40;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    color: white;
    font-size: 2rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #8b4513;
    bottom: -10px;
    left: 20%;
}

/* ABOUT */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* CABAÑAS */
.cabanas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.cabana-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cabana-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cabana-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.cabana-carousel {
    display: flex;
    transition: transform 0.4s ease;
    height: 100%;
}

.cabana-carousel img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background-color: white;
    width: 24px;
    border-radius: 4px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.cabana-card:hover .carousel-nav {
    opacity: 1;
}

.carousel-nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.cabana-details {
    padding: 20px;
}

.cabana-details h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.cabana-features {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.cabana-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

/* COMODIDADES INCLUIDAS */
.comodidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.comodidad-categoria {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comodidad-categoria:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.comodidad-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0ebe2;
}

.comodidad-header i {
    font-size: 2rem;
    color: #5a7052;
}

.comodidad-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #3a2a18;
}

.comodidad-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comodidad-lista li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
}

.comodidad-lista li:last-child {
    border-bottom: none;
}

.comodidad-lista i {
    color: #5a7052;
    font-size: 0.9rem;
    min-width: 16px;
}

.comodidades-nota {
    background: linear-gradient(135deg, #5a7052 0%, #465a40 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(90, 112, 82, 0.3);
}

.comodidades-nota i {
    font-size: 2rem;
    opacity: 0.9;
}

.comodidades-nota p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* SERVICIOS */
.servicios-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.servicio-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-8px);
}

.servicio-icon {
    font-size: 3rem;
    color: #5a7052;
    margin-bottom: 20px;
}

/* TESTIMONIOS */
.testimonios-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonios-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonio {
    min-width: 100%;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonio-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonio-author {
    font-weight: 700;
    color: #5a7052;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-btn {
    background-color: #5a7052;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #465a40;
    transform: scale(1.1);
}

/* CONTACTO */
.contacto-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #5a7052;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-item i {
    font-size: 1rem;
}

.cta-whatsapp-section {
    text-align: center;
    margin: 40px 0 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f0ebe2 0%, #e8e3d8 100%);
    border-radius: 15px;
}

.btn-whatsapp-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: white;
}

.btn-whatsapp-main i {
    font-size: 1.8rem;
}

.cta-subtitle {
    margin-top: 15px;
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacto-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contacto-info-icon {
    font-size: 1.5rem;
    color: #5a7052;
}

.contacto-info-text h4 {
    margin-bottom: 5px;
    color: #3a2a18;
}

.phone-link {
    color: #25D366;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #128C7E;
    transform: translateX(3px);
}

.reviews-link {
    color: #5a7052;
    font-size: 0.9rem;
    text-decoration: underline;
}

.reviews-link:hover {
    color: #8b4513;
}

.contacto-mapa {
    border-radius: 10px;
    overflow: hidden;
}

.contacto-mapa iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FOOTER */
footer {
    background-color: #3a2a18;
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #5a7052;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d0c8b8;
}

.footer-links a:hover {
    color: white;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #5a7052;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: white;
}

.social-icon:hover {
    background-color: white;
    color: #3a2a18;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #d0c8b8;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-control {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* WHATSAPP */
.chat-widget-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.chat-widget-btn:hover {
    transform: scale(1.1);
}

.chat-widget-btn svg {
    width: 35px;
    height: 35px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .contacto-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .btn-hero {
        font-size: 1.1rem;
        padding: 16px 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        padding: 20px 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .hero {
        margin-top: 70px;
        align-items: flex-start;
        padding-top: 60px;
    }

    .hero-content {
        padding: 20px 15px;
        background: rgba(0, 0, 0, 0.3);
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn-hero {
        font-size: 0.95rem;
        padding: 12px 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .servicios-container {
        grid-template-columns: 1fr;
    }

    .contacto-container {
        grid-template-columns: 1fr;
    }

    .btn-whatsapp-main {
        font-size: 1rem;
        padding: 16px 30px;
    }

    .btn-whatsapp-main i {
        font-size: 1.5rem;
    }

    .contacto-badges {
        flex-direction: column;
        align-items: center;
    }

    .cta-whatsapp-section {
        padding: 30px 15px;
    }

    /* RESPONSIVE COMODIDADES */
    .comodidades-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comodidad-categoria {
        padding: 20px;
    }

    .comodidad-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .comodidad-header i {
        font-size: 1.5rem;
    }

    .comodidad-header h3 {
        font-size: 1.2rem;
    }

    .comodidades-nota {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .comodidades-nota i {
        font-size: 1.5rem;
    }

    .comodidades-nota p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .hero {
        align-items: flex-start;
        padding-top: 40px;
    }

    .hero-content {
        padding: 15px 10px;
        background: rgba(0, 0, 0, 0.35);
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn-hero {
        font-size: 0.85rem;
        padding: 10px 25px;
    }

    .scroll-down {
        bottom: 15px;
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .btn-whatsapp-main {
        font-size: 0.9rem;
        padding: 14px 25px;
    }

    .badge-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    /* COMODIDADES MOBILE */
    .comodidad-lista li {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .comodidades-nota p {
        font-size: 0.9rem;
    }
}


/* Index2 */

:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f5f0;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.modal {
    transition: opacity 0.3s ease;
}

.timeline-line {
    width: 2px;
    background-color: #E5E7EB;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #3B82F6;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3B82F6;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3B82F6;
    cursor: pointer;
}

.custom-checkbox {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #2153b8;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input~.checkmark {
    border-color: #3B82F6;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #3B82F6;
    border-color: #3B82F6;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 34px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.switch-slider {
    background-color: #3B82F6;
}

input:checked+.switch-slider:before {
    transform: translateX(26px);
}

/* MENSAJE FINAL */
.mensaje-final {
    max-width: 1200px;
    margin: 30px auto 60px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mensaje-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5a7052 0%, #8b4513 50%, #5a7052 100%);
}

.mensaje-final-icono {
    font-size: 3rem;
    color: #5a7052;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mensaje-final-titulo {
    font-size: 2rem;
    font-family: 'Georgia', serif;
    color: #3a2a18;
    margin-bottom: 15px;
    font-weight: 700;
}

.mensaje-final-texto {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 25px;
}

.mensaje-final-separador {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b4513, transparent);
    margin: 30px auto;
}

.mensaje-final-subtexto {
    font-size: 0.95rem;
    color: #8b4513;
    font-style: italic;
    font-weight: 500;
}

/* RESPONSIVO MENSAJE FINAL */
@media (max-width: 1210px) {
    .mensaje-final {
        padding: 40px 20px;
        margin: 30px 17px 40px;
    }

    .mensaje-final-icono {
        font-size: 2.5rem;
    }

    .mensaje-final-titulo {
        font-size: 1.6rem;
    }

    .mensaje-final-texto {
        font-size: 1.1rem;
    }

    .mensaje-final-subtexto {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .mensaje-final {
        padding: 30px 20px;
        margin: 30px 17px 30px;
        border-radius: 10px;
    }

    .mensaje-final-icono {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .mensaje-final-titulo {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .mensaje-final-texto {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .mensaje-final-separador {
        width: 80px;
        margin: 20px auto;
    }

    .mensaje-final-subtexto {
        font-size: 0.85rem;
    }
}