/* =========================================
   1. VARIABLES Y RESET
   ========================================= */
   :root {
    /* Colores Principales */
    --primary-color: #0056D2;      /* Azul Profundo de confianza */
    --primary-dark: #003FA0;
    --primary-light: #E6F0FF;
    --accent-color: #00C2CB;       /* Turquesa vibrante */
    --secondary-color: #FF9F1C;    /* Naranja para CTAs */
    
    /* Colores Neutros */
    --text-main: #2D3748;
    --text-light: #718096;
    --text-white: #ffffff;
    --bg-body: #F7FAFC;
    --bg-white: #ffffff;
    --bg-dark: #1A202C;

    /* Tipografía */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Espaciados y Tamaños */
    --header-height: 80px;
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Sombras y Efectos */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 6px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 30px rgba(0,0,0,0.12);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: --var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   2. UTILIDADES Y CLASES GLOBALES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 5rem 0;
}

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

.section__header {
    margin-bottom: 3rem;
}

.section__subtitle {
    display: block;
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section__text {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn--primary:hover {
    background-color: #e88b0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn--outline:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn--white {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn--white:hover {
    background-color: var(--primary-light);
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn--block {
    display: block;
    width: 100%;
}

/* =========================================
   3. HEADER Y NAVEGACIÓN
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.header.scrolled .logo {
    color: var(--primary-color);
}

.header.scrolled .nav__link {
    color: var(--text-main);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.logo span {
    color: var(--accent-color);
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle, .nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--text-white);
    margin-top: 0; /* Override default section margin */
    padding: 0;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://files.lafm.com.co/assets/public/2024-09/vuelos_viajes.jpg?w=1200');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: -1;
}

.hero__content {
    z-index: 1;
    max-width: 700px;
}

.hero__subtitle {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Search Widget Decorativo */
.search-widget {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    flex-wrap: wrap;
}

.search-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-right: 1px solid #eee;
    color: var(--text-main);
}

.search-item:last-of-type {
    border-right: none;
}

.search-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.search-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.search-item p {
    font-weight: 600;
    font-size: 0.9rem;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.search-btn:hover {
    background-color: var(--primary-dark);
}

/* =========================================
   5. DESTINOS GRID
   ========================================= */
.destinos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card--destino {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.card--destino:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card__image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card--destino:hover .card__image img {
    transform: scale(1.1);
}

.card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card__badge.new {
    background-color: var(--accent-color);
}

.card__content {
    padding: 1.5rem;
}

.card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card__title {
    font-size: 1.25rem;
}

.card__rating {
    color: #FFC107;
    font-size: 0.9rem;
    font-weight: 600;
}

.card__desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.card__price {
    display: flex;
    flex-direction: column;
}

.card__price span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.card__price strong {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-dark);
    padding-right: 5px;
}

/* =========================================
   6. OFERTAS (BANNERS)
   ========================================= */
.ofertas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.oferta {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    color: white;
    transition: var(--transition);
}

.oferta:hover {
    transform: scale(1.02);
}

.oferta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.5s;
}

.oferta:hover .oferta__bg {
    transform: scale(1.1);
}

.oferta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
    z-index: -1;
}

.oferta__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.oferta--main {
    grid-column: span 2;
    grid-row: span 2;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem;
}

.oferta--main::before {
    background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
}

.oferta--main .oferta__content {
    max-width: 60%;
}

.oferta--main h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.oferta--secondary h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.oferta__tag {
    display: inline-block;
    background-color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.oferta__tag.warning { background-color: #ff4757; }
.oferta__tag.info { background-color: #2ed573; }

.oferta__prices {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 10px;
    font-size: 1rem;
}

.new-price {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.btn-text {
    color: white;
    font-weight: 600;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* =========================================
   7. PAQUETES
   ========================================= */
.paquetes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.paquete-card {
    background: var(--bg-white);
    border: 1px solid #eee;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.paquete-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.paquete__img-box {
    height: 180px;
    overflow: hidden;
}

.paquete__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paquete__content {
    padding: 1.5rem;
}

.paquete__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.paquete__icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ddd;
}

.icon-box {
    width: 35px;
    height: 35px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: help;
}

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

.paquete__action .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.paquete__action .btn--outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.paquete__action .btn--outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* =========================================
   8. TESTIMONIOS CAROUSEL
   ========================================= */
.testimonial-carousel {
    position: relative;
    height: 350px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-track-container {
    background: var(--bg-white);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 500ms ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    text-align: center;
    padding: 2rem 4rem;
}

.client-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-light);
}

.client-opinion {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.client-stars {
    color: #FFC107;
    margin-bottom: 0.5rem;
}

.client-name {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    z-index: 10;
    color: var(--primary-color);
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    gap: 10px;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.current-slide {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* =========================================
   9. CONTACTO
   ========================================= */
.contacto__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contacto__text {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.contacto__form-box {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form__group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form__input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: transparent;
}

.form__input:focus {
    border-color: var(--primary-color);
}

/* Floating Label Effect */
.form__label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1rem;
    transition: var(--transition);
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form__textarea {
    height: 120px;
    resize: none;
}

.form__textarea + .form__label {
    top: 20px;
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
    top: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.form__error {
    display: none;
    font-size: 0.8rem;
    color: #ff4757;
    margin-top: 5px;
}

.form__input.error {
    border-color: #ff4757;
}

.form__input.error ~ .form__error {
    display: block;
}

.form-status {
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
}

/* =========================================
   10. FOOTER
   ========================================= */
.footer {
    background-color: var(--bg-dark);
    color: #cbd5e0;
    padding: 4rem 0 1rem;
    font-size: 0.9rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer__desc {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer__socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer__title {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer__links li {
    margin-bottom: 0.8rem;
}

.footer__links a {
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer__form {
    display: flex;
    margin-top: 1rem;
}

.footer__input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer__btn {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer__btn:hover {
    background-color: #e88b0b;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

/* =========================================
   11. RESPONSIVE (MEDIA QUERIES)
   ========================================= */
@media screen and (max-width: 1024px) {
    .container {
        width: 95%;
    }
    
    .ofertas__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .oferta--main {
        grid-column: span 2;
        height: 300px;
    }
    
    .oferta--secondary {
        height: 250px;
    }

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

@media screen and (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .header__container {
        padding: 0 15px;
    }

    /* Menú Móvil */
    .nav {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 4rem 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: 0.4s;
        z-index: 999;
        border-radius: 0 0 20px 20px;
    }

    .nav.show-menu {
        top: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav__link {
        color: var(--text-main);
        font-size: 1.1rem;
    }

    .nav__toggle, .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 2rem;
    }
    
    .nav__toggle {
        color: white;
    }
    
    .header.scrolled .nav__toggle {
        color: var(--text-main);
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .contacto__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ofertas__grid {
        grid-template-columns: 1fr;
    }
    
    .oferta--main {
        grid-column: 1;
    }
    
    .paquetes__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .search-widget {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 1rem;
    }
}

/* =========================================
   12. ANIMACIONES (Keyframes & Classes)
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

/* Clase para scroll animation JS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2000;
}

.modal.show {
    display: block;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal__content {
    position: relative;
    max-width: 600px;
    margin: 5% auto;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(-10px);
    opacity: 0;
    transition: var(--transition);
}

.modal.show .modal__content {
    transform: translateY(0);
    opacity: 1;
}

.modal__image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.modal__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal__close:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.modal__cta {
    white-space: nowrap;
}

@media screen and (max-width: 576px) {
    .modal__content {
        width: 90%;
        margin: 10% auto;
    }
    .modal__image {
        height: 200px;
    }
}
