:root {
    --wine: #800a18;
    --wine-light: #a01220;
    --wine-glow: rgba(128, 10, 24, 0.35);
    --wine-glow-soft: rgba(128, 10, 24, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-border-hover: rgba(128, 10, 24, 0.55);
    --text-primary: #f5f0f0;
    --text-muted: rgba(245, 240, 240, 0.60);
}
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}
.hero-container {
    background-color: var(--wine);
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.hero-container::before {
    content: '';
    position: absolute;
    inset: 0;
    
    pointer-events: none;
    z-index: 0;
}

.hero-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;

    pointer-events: none;
    z-index: 0;
}

.hero-logo {
    width: 280px;
    height: auto;
    margin-bottom: 50px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    color: rgba(255, 255, 255, 0.92);
    font-size: 2.1rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.btn-catalogo {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(110deg, #0a0a0a 40%, #2a0508 60%, #0a0a0a 80%);
    background-size: 220% 100%;
    background-position: 100% 0;
    padding: 18px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0 rgba(128, 10, 24, 0);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: background-position 0.6s ease, box-shadow 0.4s ease, border-color 0.4s ease, transform 0.2s ease;
}

.btn-catalogo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.07) 50%, transparent 70%);
    background-size: 220% 100%;
    background-position: 200% 0;
    transition: background-position 0.6s ease;
}

.btn-catalogo:hover {
    background-position: 0% 0;
    border-color: rgba(128, 10, 24, 0.7);
    box-shadow: 0 0 20px rgba(128, 10, 24, 0.45), 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.btn-catalogo::after {
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.035) 50%, transparent 70%);
}

.btn-catalogo:active {
    transform: translateY(0px);
    box-shadow: 0 0 10px rgba(128, 10, 24, 0.3);
}

.card-wrapper {
    background: linear-gradient(180deg, #800a18 0%, #2a0508 30%, #000000 100%);
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
}

.head-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 3vw, 2.4rem);
    font-weight: 600;
    color: #fff;
}

.head-pg {
    margin-top: 15px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: whitesmoke;
}

.card-box {
    background: #800a18;
    border-radius: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.card-box img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (hover: hover) {
    .card-box:hover {
        box-shadow: 0px 8px 28px rgba(128, 10, 24, 0.5);
        transform: translateY(-10px);
        border-color: #800a18;
    }
}

@media (hover: none) {
    .card-box:active {
        transform: scale(0.98);
        border-color: #800a18;
    }
}

.card-text {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-text h4 {
    font-size: 1rem;
    font-family: 'Cinzel', serif;
    color: #f5eded;
    margin-bottom: 10px;
}

.card-text p {
    font-size: 0.8rem;
    line-height: 1.2;
    height: 40px;
    overflow: hidden;
    color: rgba(245, 237, 237, 0.55);
    flex-grow: 1;
    margin: 0;
}

.card-price {
    color: #e8909a;
    font-size: 0.95rem;
    text-align: center;
}

.card-text .btn {
    margin: 0 auto;
    font-size: 0.8rem;
    width: fit-content;
    padding: 8px 20px;
    border-radius: 15px;
    color: #f5eded;
    border-color: rgba(245, 237, 237, 0.3);
    background: transparent;
    transition: 0.3s;
}

.card-text .btn:hover {
    background: #f5eded;
    color: #0e0205;
}

.slider_carousel .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.slider_carousel .owl-prev,
.slider_carousel .owl-next {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: all;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.slider_carousel .owl-prev:hover,
.slider_carousel .owl-next:hover {
    background: rgba(128, 10, 24, 0.55);
    border-color: rgba(128, 10, 24, 0.7);
    transform: translateY(-50%) scale(1.08);
}

.slider_carousel .owl-next { right: -54px; }
.slider_carousel .owl-prev { left: -54px; }

.slider_carousel .owl-prev i,
.slider_carousel .owl-next i {
    color: rgba(255, 180, 180, 0.85);
    font-size: 14px;
    transition: color 0.3s ease;
}

.slider_carousel .owl-prev:hover i,
.slider_carousel .owl-next:hover i {
    color: #ffffff;
}



.benefits-section {
    background-color: black;
    width: 100%;
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 300px;

    pointer-events: none;
    z-index: 0;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(128, 10, 24, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.benefits-inner {
    position: relative;
    z-index: 1;
}

.benefits-header {
    text-align: center;
    margin-bottom: 64px;
}

.benefits-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--wine-light);
    margin-bottom: 20px;
    display: inline-block;
}

.benefits-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: var(--text-primary);
    margin: 0;
}

.benefits-header h2 em {
    font-style: normal;
    color: var(--wine-light);
    text-shadow: 0 0 40px rgba(128, 10, 24, 0.6);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 60px;


}

.benefits-section .hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px 28px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.4s ease, transform 0.35s ease, background 0.4s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--wine-glow-soft) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.benefit-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-6px);
    background: rgba(128, 10, 24, 0.07);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-orb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(160, 18, 32, 0.5), rgba(80, 5, 12, 0.8));
    border: 1px solid rgba(128, 10, 24, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(128, 10, 24, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    flex-shrink: 0;
}

.benefit-card:hover .benefit-orb {
    box-shadow: 0 0 35px rgba(128, 10, 24, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}

.benefit-orb svg {
    width: 26px;
    height: 26px;
    stroke: #f5b8bf;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center;
}

.benefit-divider {
    width: 30px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--wine-light), transparent);
    margin: 14px auto;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.benefit-card:hover .benefit-divider {
    width: 50px;
}

.benefit-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.80rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    text-align: justify;
}

.benefit-glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 10, 24, 0.5), transparent);
}

.cotizar-section {
    background: linear-gradient(180deg, #000000 0%, #2a0508 30%, #800a18 100%);
    width: 100%;
    padding: 120px 40px 100px;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
 
.cotizar-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, transparent 70%);
    pointer-events: none;
}
 
.cotizar-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}
 
.cotizar-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 180, 180, 0.7);
    margin-bottom: 20px;
    display: block;
}
 
.cotizar-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}
 
.cotizar-subtitle {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    max-width: 380px;
}
 
.cotizar-divider {
    width: 100%;
    height: 1.5px;
    background: rgba(255, 180, 180, 0.5);
    border-radius: 2px;
    margin: 28px 0;
}
 
.cotizar-detail {
    display: flex;
    align-items: center; 
    gap: 15px;
    margin-bottom: 20px;
}

.cotizar-detail-icon {
    width: 42px; 
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 180, 180, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cotizar-detail-icon i {
    font-size: 18px;
    color: rgba(255, 180, 180, 0.8);
}

.cotizar-detail:hover .cotizar-detail-icon {
    background: rgba(128, 10, 24, 0.3);
    border-color: rgba(255, 180, 180, 0.5);
    transform: scale(1.1);
}

.cotizar-detail-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2; 
    margin: 0; 
}

.cotizar-form-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 36px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    z-index: 1;
}
 
.cotizar-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}
 
.cotizar-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,180,180,0.3), transparent);
}
 
.cotizar-form-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.04em;
}
 
.cotizar-field {
    margin-bottom: 12px;
}
 
.cotizar-field label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 180, 180, 0.7);
    margin-bottom: 7px;
}
 
.cotizar-field input,
.cotizar-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}
 
.cotizar-field input::placeholder,
.cotizar-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}
 
.cotizar-field input:focus,
.cotizar-field textarea:focus {
    border-color: rgba(255, 180, 180, 0.45);
    background: rgba(255, 255, 255, 0.09);
}
 
.cotizar-field textarea {
    resize: none;
    height: 75px;
    line-height: 1.6;
}

.iti-wrapper {
    position: relative;
}

.iti {
    width: 100%;
}

.iti__tel-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px 12px 52px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.iti__tel-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.iti__tel-input:focus {
    border-color: rgba(255, 180, 180, 0.45);
    background: rgba(255, 255, 255, 0.09);
}

.iti__flag-container {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.iti__selected-dial-code {
    color: rgba(255, 180, 180, 0.75);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
}

.iti__country-list {
    background: #1a0309;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #f5eded;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
}

.iti__country.iti__highlight,
.iti__country:hover {
    background: rgba(128, 10, 24, 0.35);
}

.iti__divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.iti__dial-code {
    color: rgba(255, 180, 180, 0.6);
}
 
.cotizar-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0 20px;
    cursor: pointer;
}
 
.cotizar-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #800a18;
    cursor: pointer;
}
 
.cotizar-check span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}
 
.cotizar-check span a {
    color: rgba(255, 180, 180, 0.75);
    text-decoration: none;
}
 
.cotizar-check span a:hover {
    color: rgba(255, 180, 180, 1);
}
 
.btn-cotizar {
    width: 100%;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(110deg, #5a0711 0%, #800a18 50%, #5a0711 100%);
    background-size: 220% 100%;
    background-position: 100% 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 32px;
    cursor: pointer;
    transition: background-position 0.6s ease, box-shadow 0.4s ease, transform 0.2s ease;
}

.btn-cotizar:hover {
    background-position: 0% 0;
    box-shadow: 0 0 24px rgba(128, 10, 24, 0.6), 0 4px 16px rgba(0,0,0,0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-cotizar:active {
    transform: translateY(0);
}



@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.benefits-header         { animation: fadeSlideUp 0.7s 0.00s ease both; }
.benefit-card:nth-child(1) { animation: fadeSlideUp 0.7s 0.15s ease both; }
.benefit-card:nth-child(2) { animation: fadeSlideUp 0.7s 0.28s ease both; }
.benefit-card:nth-child(3) { animation: fadeSlideUp 0.7s 0.41s ease both; }
.benefit-card:nth-child(4) { animation: fadeSlideUp 0.7s 0.54s ease both; }

@media (max-width: 992px) {
    .slider_carousel .owl-next { right: -8px; }
    .slider_carousel .owl-prev { left: -8px; }

}

@media (max-width: 768px) {
    .hero-container {padding-bottom: 300px; padding-top: 400px;}
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .card-box img  { height: 200px; }
    .card-text h4  { font-size: 0.9rem; }

    .cotizar-section { padding: 60px 40px 80px; }
    .cotizar-form-card { padding: 32px 24px; }
    .cotizar-left { margin-bottom: 0px; }
    .cotizar-section .row {
        --bs-gutter-x: 0rem !important;
    }
    .cotizar-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .cotizar-field input,
    .cotizar-field textarea,
    .iti__tel-input {
        font-size: 13px !important;
    }

@media (max-width: 576px) {

    .hero-container { padding-top: 80px;
    padding-bottom: 50px;}
    .head-text           { font-size: 1.5rem; }
    .benefits-section    { padding: 80px 24px; }
    .benefits-header h2  { font-size: 1.6rem; }
    .benefits-grid       { grid-template-columns: 1fr; }

    .card-wrapper {
        min-height: auto !important; 
        height: auto !important;
        padding: 50px 15px !important; 
    }

    .card-box {
        border-radius: 24px; 
    }

    .card-box img { 
            height: 180px; 
    }

        .card-text {
            padding: 15px 15px 15px;
            min-height: auto; 
        }

        .card-text a {
            margin-top: 0 !important;
        }

        .card-text h4 {
            font-size: 0.85rem;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2; 
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.2em; /* Define exactamente cuánto mide una línea */
            height: 2.4em;
        }
        .card-text p {
            display: none !important; 
        }

        .card-price {
            font-size: 0.85rem;
            margin-top: 5px;
            margin-bottom: 8px;
        }

        .card-text .btn {
            padding: 6px 0px;
            font-size: 0.75rem;
            width: 100%; 
        }
    }

    .benefits-section {
        padding-top: 0px;
    }
    .cotizar-form-card { padding: 28px 20px; }
}