:root {
    --color-leather: #8B4513;
    --color-sand: #F4EBD0;
    --color-rust: #B7410E;
    --color-charcoal: #222222;
    --color-gold: #D4AF37;
    --color-white: #FFFFFF;
    --color-gold-light: #E6C158;
    --color-gold-dark: #B8941F;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-title: 'Bebas Neue', cursive;
    --font-body: 'Open Sans', sans-serif;
    --font-decorative: 'Rye', cursive;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
    --box-shadow-hover: 0 8px 20px rgba(139, 69, 19, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.5;
    color: var(--color-charcoal);
    background-color: var(--color-sand);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(139, 69, 19, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-gold);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-decorative);
    font-size: 1.8rem;
    color: var(--color-gold);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-subtext {
    font-family: var(--font-title);
    font-size: 0.7rem;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.2);
}

.btn-nav-cta {
    background: var(--color-gold);
    color: var(--color-charcoal) !important;
    font-weight: bold;
}

.btn-nav-cta:hover {
    background: var(--color-white);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-leather) 0%, var(--color-rust) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem 2rem;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%23D4AF37" stroke-width="0.3" stroke-dasharray="3,3"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--color-gold);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-sand);
    opacity: 0.9;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-title);
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 0.5rem;
}

.btn-western {
    background: var(--color-gold);
    color: var(--color-charcoal);
    font-weight: bold;
}

.btn-western:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-western-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn-western-outline:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Secciones generales */
.section {
    padding: var(--spacing-xl) 1rem;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-leather);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--color-rust);
    font-size: 1.1rem;
    opacity: 0.8;
}

.price-notice {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: var(--spacing-md) auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notice-icon {
    font-size: 1.5rem;
}

.notice-text {
    flex: 1;
}

.notice-text strong {
    color: var(--color-gold-dark);
    display: block;
    margin-bottom: 0.2rem;
}

.notice-text small {
    color: var(--color-charcoal);
    opacity: 0.8;
}

/* Sistema de Tarjetas */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    max-width: 100%;
}

.card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 2px solid var(--color-leather);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

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

.card.premium {
    border-color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.card-header {
    background: var(--color-leather);
    color: var(--color-white);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    position: relative;
}

.card.premium .card-header {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.card-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    flex: 1;
}

.card-tag {
    background: var(--color-rust);
    color: var(--color-white);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-tag.popular {
    background: #D4AF37;
    color: var(--color-charcoal);
}

.card-tag.premium {
    background: var(--color-gold-dark);
    color: var(--color-white);
}

.card-tag.intense {
    background: #B7410E;
    color: var(--color-white);
}

.card-tag.moderate {
    background: #E6C158;
    color: var(--color-charcoal);
}

.card-tag.kids {
    background: #8B4513;
    color: var(--color-white);
}

.card-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-description {
    color: var(--color-charcoal);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    flex: 1;
}

.card-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.detail {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.detail:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--color-leather);
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-value {
    color: var(--color-charcoal);
    text-align: right;
    font-size: 0.9rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.feature {
    background: var(--color-sand);
    color: var(--color-rust);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.card-footer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    margin-top: auto;
}

/* Atracciones adicionales */
.more-attractions {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md);
    background: rgba(139, 69, 19, 0.05);
    border-radius: var(--border-radius);
    border: 1px dashed var(--color-leather);
}

.more-info {
    text-align: center;
    color: var(--color-charcoal);
    font-size: 0.95rem;
}

.more-info strong {
    color: var(--color-rust);
}

/* Subsecciones */
.section-subheader {
    text-align: center;
    margin: var(--spacing-xl) 0 var(--spacing-lg);
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-leather);
    margin-bottom: 0.5rem;
}

.subtitle-description {
    color: var(--color-rust);
    font-size: 1rem;
}

/* Mini tarjetas */
.mini-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    max-width: 100%;
}

.mini-card {
    background: var(--color-white);
    border: 2px solid var(--color-leather);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    max-width: 100%;
}

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

.mini-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.mini-card-content h4 {
    font-family: var(--font-heading);
    color: var(--color-leather);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.mini-card-content p {
    font-size: 0.85rem;
    color: var(--color-charcoal);
    opacity: 0.8;
}

/* Sección Calendario */
.calendar-section {
    background: linear-gradient(to bottom, #f8f4e9 0%, #f0e6d2 100%);
}

.calendar-disclaimer {
    background: rgba(183, 65, 14, 0.1);
    border: 2px solid var(--color-rust);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: var(--spacing-md) auto;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.disclaimer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.disclaimer-text {
    color: var(--color-rust);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Sistema de Pestañas */
.tabs {
    background: var(--color-white);
    border-radius: var(--border-radius);
    border: 2px solid var(--color-leather);
    overflow: hidden;
    margin: var(--spacing-lg) auto;
    max-width: 800px;
    width: 100%;
}

.tabs-header {
    display: flex;
    background: var(--color-leather);
    border-bottom: 2px solid var(--color-leather);
    width: 100%;
}

.tab-btn {
    flex: 1;
    background: transparent;
    color: var(--color-white);
    border: none;
    padding: 1rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

.tab-btn.active {
    background: var(--color-gold);
    color: var(--color-charcoal);
    font-weight: 600;
}

.tabs-content {
    padding: var(--spacing-lg);
    width: 100%;
    overflow-x: hidden;
}

.tab-pane {
    display: none;
    width: 100%;
    max-width: 100%;
}

.tab-pane.active {
    display: block;
}

.calendar-container {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Mejoras del calendario - Botones grandes a los lados */
.calendar-month-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--color-white);
    border-radius: var(--border-radius);
    border: 2px solid var(--color-leather);
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
}

.calendar-nav-btn {
    background: var(--color-gold);
    color: var(--color-charcoal);
    border: 2px solid var(--color-leather);
    border-radius: var(--border-radius);
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.calendar-nav-btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

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

.calendar-month-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-leather);
    font-weight: 700;
    min-width: 200px;
    text-align: center;
    padding: 0 1rem;
    flex-shrink: 0;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    background: var(--color-white);
    border: 2px solid var(--color-leather);
    table-layout: fixed;
}

.calendar-table th {
    background: var(--color-leather);
    color: var(--color-white);
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--color-leather);
    font-size: 0.9rem;
    width: 14.28%;
}

.calendar-table td {
    padding: 0.5rem;
    text-align: center;
    border: 1px solid var(--color-leather);
    min-width: 40px;
    height: 40px;
    cursor: default;
    width: 14.28%;
    box-sizing: border-box;
}

.calendar-day {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
}

.calendar-day.available {
    background: #E6C158;
    color: #5D2906;
    border: 2px solid #D4AF37;
}

.calendar-day.checkout {
    background: #F4EBD0;
    color: #8B4513;
    border: 2px solid #E6C158;
}

.calendar-day.closed {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    opacity: 0.7;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.available {
    background: #E6C158;
    border: 2px solid #D4AF37;
}

.legend-color.checkout {
    background: #F4EBD0;
    border: 2px solid #E6C158;
}

.legend-color.closed {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
}

.legend-text {
    font-size: 0.9rem;
    color: var(--color-charcoal);
}

/* Formulario */
.form-section {
    background: linear-gradient(var(--color-sand), var(--color-white));
}

.form-card {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.form-card .card-header {
    background: var(--color-rust);
}

/* Texto blanco en garantía de precio del formulario */
.price-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    border: 1px solid var(--color-gold);
}

.form-card .card-header .price-guarantee {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--color-white);
}

.form-card .card-header .guarantee-text {
    color: var(--color-white);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

.form-card .card-header .guarantee-icon {
    color: var(--color-white);
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
    font-size: 1rem;
}

.western-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: var(--font-heading);
    color: var(--color-leather);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-input,
.form-select {
    padding: 0.75rem;
    border: 2px solid var(--color-leather);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-white);
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-hint {
    font-size: 0.85rem;
    color: var(--color-rust);
    margin-top: 0.25rem;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    width: 100%;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: normal;
    line-height: 1.4;
}

.legal-link {
    color: var(--color-leather);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--color-rust);
    text-decoration: none;
}

.form-submit {
    margin-top: var(--spacing-md);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
}

.form-submit .btn .btn-text {
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    width: auto;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-charcoal);
    text-align: center;
    opacity: 0.8;
    width: 100%;
}

/* Testimonios */
.testimonials-section {
    background: linear-gradient(to bottom, #f0e6d2 0%, #e8d9b5 100%);
}

.testimonial-card .card-content {
    padding: var(--spacing-md);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    position: relative;
    padding-left: 1rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--color-gold);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(139, 69, 19, 0.1);
}

.author-avatar {
    font-size: 2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: var(--font-heading);
    color: var(--color-leather);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--color-rust);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    background: var(--color-rust);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(183, 65, 14, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold);
}

.floating-cta:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.floating-icon {
    font-size: 1.2rem;
}

.floating-text {
    font-family: var(--font-title);
    font-size: 1rem;
}

/* Footer */
.main-footer {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: var(--spacing-xl) 1rem var(--spacing-md);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.footer-logo {
    font-family: var(--font-decorative);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer-description {
    color: var(--color-white);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price-guarantee-footer {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.price-guarantee-footer p {
    margin: 0.3rem 0;
    color: var(--color-white);
}

.price-guarantee-footer strong {
    color: var(--color-gold);
}

.footer-section h4 {
    color: var(--color-gold);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold);
}

/* Enlace de DSFBusiness - SIN COLOR AZUL */
.footer-credit-link {
    color: var(--color-gold) !important;
    text-decoration: none;
    font-weight: 600;
    opacity: 1;
    border-bottom: 1px solid var(--color-gold);
    transition: all 0.3s ease;
}

.footer-credit-link:hover {
    color: var(--color-gold-light) !important;
    border-bottom-color: var(--color-gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.9;
    width: 100%;
    max-width: 100%;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-leather);
    color: var(--color-white);
    padding: 1rem;
    z-index: 1001;
    border-top: 2px solid var(--color-gold);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 100%;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.cookie-text h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--border-radius);
    border: 3px solid var(--color-leather);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: var(--color-leather);
    color: var(--color-gold);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-gold);
}

.modal-header h3 {
    font-family: var(--font-heading);
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.cookie-info {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(139, 69, 19, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-leather);
}

.cookie-info h4 {
    color: var(--color-leather);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cookie-desc {
    font-size: 0.9rem;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.cookie-list {
    list-style: none;
    padding-left: 1rem;
}

.cookie-list li {
    font-size: 0.85rem;
    color: var(--color-charcoal);
    margin-bottom: 0.3rem;
    padding-left: 0.5rem;
}

.cookie-list li strong {
    color: var(--color-rust);
}

.cookie-option {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: var(--spacing-md);
    background: rgba(139, 69, 19, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.3rem;
}

.cookie-option-details {
    flex: 1;
}

.cookie-option-details label {
    font-family: var(--font-heading);
    color: var(--color-leather);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.cookie-notice {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-gold);
}

.cookie-notice p {
    font-size: 0.9rem;
    color: var(--color-charcoal);
}

.legal-link-modal {
    color: var(--color-leather);
    text-decoration: underline;
    font-weight: bold;
}

.legal-link-modal:hover {
    color: var(--color-rust);
    text-decoration: none;
}

.modal-footer {
    padding: 1rem 1.5rem;
    background: var(--color-sand);
    border-top: 2px solid var(--color-leather);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* Header Mobile */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(139, 69, 19, 0.98);
        padding: 1rem;
        transition: left 0.3s ease;
        gap: 0.5rem;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero Mobile - CENTRADO COMPLETAMENTE */
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Cards Grid Mobile - CENTRADO */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        justify-content: center;
    }
    
    .card {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    /* Form Row Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    /* Tabs Mobile */
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Calendar Mobile */
    .calendar-month-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .calendar-nav-btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .calendar-month-title {
        order: -1;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .calendar-table th,
    .calendar-table td {
        padding: 0.3rem;
        font-size: 0.8rem;
        min-width: 35px;
        height: 35px;
    }
    
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Modal Mobile */
    .modal-content {
        max-height: 95vh;
        margin: 0.5rem;
    }
    
    /* Mini cards mobile - CENTRADO */
    .mini-cards-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    
    .mini-card {
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
    }
    
    /* Floating CTA Mobile */
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .floating-text {
        display: none;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    /* BOTÓN DEL FORMULARIO - COMPLETAMENTE CENTRADO EN MÓVIL */
    .form-submit {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .form-submit .btn {
        width: 100% !important;
        max-width: 350px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        text-align: center !important;
    }
    
    .form-submit .btn .btn-text {
        text-align: center !important;
        flex: 1 !important;
        display: inline-block !important;
        margin: 0 auto !important;
        padding: 0 0.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }
    
    .form-submit .btn .btn-icon {
        margin-left: 0.3rem !important;
        flex-shrink: 0 !important;
    }
    
    .form-note {
        text-align: center !important;
        width: 100% !important;
    }
    
    /* PREVENIR OVERFLOW HORIZONTAL EN MÓVIL */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100vw !important;
        position: relative !important;
    }
    
    .section {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .section-header {
        text-align: center !important;
        width: 100% !important;
    }
    
    .section-title {
        text-align: center !important;
    }
    
    .section-subtitle {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    /* BOTÓN DEL FORMULARIO EN MÓVIL MUY PEQUEÑO - MEJORADO */
    .form-submit .btn .btn-text {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        padding: 0.2rem 0 !important;
        text-align: center !important;
        display: inline-block !important;
        width: auto !important;
        max-width: 100% !important;
    }
    
    .form-submit .btn.btn-large {
        padding: 0.7rem 0.4rem !important;
        min-height: auto !important;
        max-width: 300px !important;
    }
    
    .calendar-nav-btn {
        min-width: 100px;
        padding: 0.6rem 1rem;
        font-size: 1rem;
    }
    
    .calendar-month-title {
        font-size: 1.4rem;
        min-width: 150px;
    }
    
    /* MEJORA CRÍTICA: Evitar overflow horizontal en móvil pequeño */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    img, table, .card, .calendar-table {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .calendar-table {
        font-size: 0.75rem !important;
    }
    
    .calendar-table th,
    .calendar-table td {
        padding: 0.2rem !important;
        font-size: 0.7rem !important;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 0.5s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .card-image img {
        transition: none;
    }
}