/* AMBITIONS MX - Bottom Sections (Testimonials, Why Us, FAQ, Footer) */

/* Import Typography System */
@import url('typography.css');

/* ==================== SOBRE NOSOTROS SECTION ==================== */
.about-us-section {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 19, 30, 0.98), rgba(29, 29, 29, 0.98));
    padding: 80px 40px;
    overflow: hidden;
}

.about-us-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-us-heading {
    font-family: var(--font-primary);
    font-size: var(--text-h2-section);
    font-weight: var(--weight-light);
    line-height: var(--lh-normal);
    color: #C9B896;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
}

.about-us-content {
    max-width: 1400px;
    margin: 0 auto;
}

.about-us-text-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.about-us-text-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 184, 150, 0.2);
    border-radius: 12px;
    padding: 40px;
}

.about-us-subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-h2-subsection);
    font-weight: var(--weight-medium);
    color: #C9B896;
    letter-spacing: var(--ls-wider);
    margin-bottom: 20px;
}

.about-us-text {
    font-family: var(--font-primary);
    font-size: var(--text-body);
    font-weight: var(--weight-light);
    line-height: var(--lh-extra-loose);
    color: rgba(242, 242, 242, 0.85);
    margin-bottom: 20px;
}

.about-us-text:last-child {
    margin-bottom: 0;
}

.about-us-text strong {
    color: #C9B896;
    font-weight: var(--weight-medium);
}

.about-us-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 184, 150, 0.15);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-value-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 184, 150, 0.4);
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-icon svg {
    transition: transform 0.3s ease;
}

.about-value-card:hover .value-icon svg {
    transform: scale(1.1);
}

.value-title {
    font-family: var(--font-primary);
    font-size: var(--text-h4);
    font-weight: var(--weight-medium);
    color: #C9B896;
    letter-spacing: var(--ls-wide);
    margin-bottom: 12px;
}

.value-description {
    font-family: var(--font-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--weight-light);
    line-height: var(--lh-comfortable);
    color: rgba(242, 242, 242, 0.7);
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
    position: relative;
    background: linear-gradient(135deg, rgba(29, 29, 29, 0.98), rgba(13, 19, 30, 0.98));
    padding: 80px 40px;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-heading {
    font-family: var(--font-primary);
    font-size: var(--text-h2-section);
    font-weight: var(--weight-light);
    line-height: var(--lh-normal);
    color: #C9B896;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}

.blog-subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-body-lg);
    font-weight: var(--weight-light);
    color: rgba(242, 242, 242, 0.7);
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 184, 150, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 184, 150, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(201, 184, 150, 0.95);
    color: #0d1929;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: var(--text-micro);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--ls-tight);
    text-transform: uppercase;
}

.blog-content {
    padding: 30px 25px;
}

.blog-title {
    font-family: var(--font-primary);
    font-size: var(--text-h3);
    font-weight: var(--weight-medium);
    color: #F2F2F2;
    line-height: var(--lh-relaxed);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #C9B896;
}

.blog-excerpt {
    font-family: var(--font-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--weight-light);
    line-height: var(--lh-loose);
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(201, 184, 150, 0.15);
}

.blog-date,
.blog-reading-time {
    font-family: var(--font-primary);
    font-size: var(--text-micro);
    font-weight: var(--weight-regular);
    color: rgba(242, 242, 242, 0.5);
    letter-spacing: var(--ls-tight);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: var(--text-caption);
    font-weight: var(--weight-medium);
    color: #C9B896;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-read-more svg {
    transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
    transform: translateX(3px);
}

/* ==================== CONTACTO SECTION ==================== */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 19, 30, 0.98), rgba(29, 29, 29, 0.98));
    padding: 80px 40px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-heading {
    font-family: var(--font-primary);
    font-size: var(--text-h2-section);
    font-weight: var(--weight-light);
    line-height: var(--lh-normal);
    color: #C9B896;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-body-lg);
    font-weight: var(--weight-light);
    color: rgba(242, 242, 242, 0.7);
    text-align: center;
    margin-bottom: 60px;
}

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

/* Contact Info Column */
.contact-info-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 184, 150, 0.2);
    border-radius: 12px;
    padding: 45px 40px;
}

.contact-info-title {
    font-family: var(--font-primary);
    font-size: var(--text-h2-subsection);
    font-weight: var(--weight-medium);
    color: #C9B896;
    letter-spacing: var(--ls-wider);
    margin-bottom: 15px;
}

.contact-info-description {
    font-family: var(--font-primary);
    font-size: var(--text-body);
    font-weight: var(--weight-light);
    line-height: var(--lh-loose);
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 40px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 184, 150, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 184, 150, 0.3);
}

.contact-info-item.highlight-whatsapp {
    background: rgba(26, 89, 104, 0.1);
    border-color: rgba(26, 89, 104, 0.3);
}

.contact-info-item.highlight-whatsapp:hover {
    background: rgba(26, 89, 104, 0.15);
    border-color: #1a5968;
}

.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-text {
    flex: 1;
}

.contact-info-label {
    font-family: var(--font-primary);
    font-size: var(--text-caption);
    font-weight: var(--weight-medium);
    color: #C9B896;
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    margin-bottom: 8px;
}

.contact-info-value {
    font-family: var(--font-primary);
    font-size: var(--text-body);
    font-weight: var(--weight-regular);
    line-height: var(--lh-comfortable);
    color: rgba(242, 242, 242, 0.9);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.contact-info-value:hover {
    color: #C9B896;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-badge {
    display: inline-block;
    background: rgba(26, 89, 104, 0.3);
    color: #1a5968;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: var(--text-micro);
    font-weight: var(--weight-medium);
    letter-spacing: var(--ls-tight);
}

/* WhatsApp CTA Box */
.contact-cta-box {
    background: linear-gradient(135deg, rgba(26, 89, 104, 0.2), rgba(13, 25, 41, 0.3));
    border: 1px solid rgba(26, 89, 104, 0.4);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.contact-cta-text {
    font-family: var(--font-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--weight-light);
    color: rgba(242, 242, 242, 0.8);
    margin-bottom: 15px;
}

.contact-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a5968 0%, #0d1929 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--weight-medium);
    letter-spacing: var(--ls-normal);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 89, 104, 0.4);
}

.contact-whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 89, 104, 0.6);
    background: linear-gradient(135deg, #206b7c 0%, #0d1929 100%);
}

/* Contact Form Column */
.contact-form-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 184, 150, 0.2);
    border-radius: 12px;
    padding: 45px 40px;
}

.contact-form-title {
    font-family: var(--font-primary);
    font-size: var(--text-h2-subsection);
    font-weight: var(--weight-medium);
    color: #C9B896;
    letter-spacing: var(--ls-wider);
    margin-bottom: 15px;
}

.contact-form-description {
    font-family: var(--font-primary);
    font-size: var(--text-body);
    font-weight: var(--weight-light);
    line-height: var(--lh-loose);
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-label {
    font-family: var(--font-primary);
    font-size: var(--text-caption);
    font-weight: var(--weight-medium);
    color: #C9B896;
    letter-spacing: var(--ls-tight);
}

.form-input {
    font-family: var(--font-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--weight-light);
    color: #F2F2F2;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 184, 150, 0.2);
    border-radius: 6px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #C9B896;
    background: rgba(255, 255, 255, 0.05);
}

.form-input::placeholder {
    color: rgba(242, 242, 242, 0.4);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23C9B896' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
    appearance: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: var(--lh-comfortable);
}

.form-privacy {
    margin-top: 5px;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: var(--text-micro);
    font-weight: var(--weight-light);
    color: rgba(242, 242, 242, 0.7);
    cursor: pointer;
}

.form-checkbox {
    margin-top: 3px;
    cursor: pointer;
    accent-color: #C9B896;
}

.privacy-link {
    color: #C9B896;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.privacy-link:hover {
    opacity: 0.8;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #C9B896 0%, #b0a080 100%);
    color: #0d1929;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 184, 150, 0.3);
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 184, 150, 0.5);
    background: linear-gradient(135deg, #d4c4a7 0%, #C9B896 100%);
}

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

.form-note {
    font-family: var(--font-primary);
    font-size: var(--text-micro);
    font-weight: var(--weight-light);
    color: rgba(242, 242, 242, 0.5);
    text-align: center;
    margin-top: 5px;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 19, 30, 0.95), rgba(29, 29, 29, 0.95));
    padding: 50px 0;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.testimonials-heading {
    font-family: var(--font-primary);
    font-size: var(--text-h2-section);
    font-weight: var(--weight-light);
    line-height: var(--lh-normal);
    color: #C9B896;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    margin-bottom: 50px;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--font-primary);
    font-size: var(--text-body-lg);
    font-weight: var(--weight-light);
    line-height: var(--lh-extra-loose);
    color: #F2F2F2;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    font-family: var(--font-primary);
    font-size: var(--text-h4);
    font-weight: var(--weight-medium);
    color: #C9B896;
    letter-spacing: var(--ls-wide);
}

.testimonial-role {
    font-family: var(--font-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--weight-light);
    color: rgba(242, 242, 242, 0.6);
    margin-top: 5px;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 184, 150, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #C9B896;
    transform: scale(1.2);
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-us-section {
    position: relative;
    background: linear-gradient(135deg, rgba(29, 29, 29, 0.95), rgba(13, 19, 30, 0.95));
    padding: 50px 0;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-us-heading {
    font-family: var(--font-primary);
    font-size: var(--text-h2-section);
    font-weight: var(--weight-light);
    line-height: var(--lh-normal);
    color: #C9B896;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(201, 184, 150, 0.3);
    border-radius: 0;
    padding: 40px 35px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.why-us-card::before {
    content: attr(data-number);
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-primary);
    font-size: 80px;
    font-weight: var(--weight-thin);
    color: rgba(201, 184, 150, 0.08);
    line-height: 1;
    z-index: 0;
}

.why-us-card:hover {
    border-left-color: rgba(201, 184, 150, 0.8);
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.04);
}

.why-us-card-title {
    font-family: var(--font-primary);
    font-size: var(--text-h3);
    font-weight: var(--weight-medium);
    color: #C9B896;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.why-us-card-text {
    font-family: var(--font-primary);
    font-size: var(--text-body);
    font-weight: var(--weight-light);
    line-height: var(--lh-extra-loose);
    color: rgba(242, 242, 242, 0.8);
    position: relative;
    z-index: 1;
}

/* Why Us CTAs */
.why-us-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.why-us-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1a5968 0%, #0d1929 100%);
    color: white !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: var(--weight-medium);
    font-size: var(--text-caption);
    letter-spacing: var(--ls-normal);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(26, 89, 104, 0.4);
    font-family: var(--font-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.why-us-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 89, 104, 0.6);
    background: linear-gradient(135deg, #206b7c 0%, #0d1929 100%);
}

.why-us-cta-button.secondary {
    background: rgba(201, 184, 150, 0.1);
    border: 2px solid #C9B896;
    color: #C9B896 !important;
    box-shadow: 0 4px 15px rgba(201, 184, 150, 0.3);
}

.why-us-cta-button.secondary:hover {
    background: transparent;
    border-color: #C9B896;
    box-shadow: none;
    transform: translateY(-2px);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 19, 30, 0.95), rgba(29, 29, 29, 0.95));
    padding: 50px 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-heading {
    font-family: var(--font-primary);
    font-size: var(--text-h2-section);
    font-weight: var(--weight-light);
    line-height: var(--lh-normal);
    color: #C9B896;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(26, 89, 104, 0.3);
}

.faq-question {
    font-family: var(--font-primary);
    font-size: var(--text-h3);
    font-weight: var(--weight-medium);
    color: #F2F2F2;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #C9B896;
}

.faq-icon {
    font-size: 20px;
    color: #C9B896;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    font-family: var(--font-primary);
    font-size: var(--text-body);
    font-weight: var(--weight-light);
    line-height: var(--lh-extra-loose);
    color: rgba(242, 242, 242, 0.8);
    padding: 0 30px 25px 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
    position: relative;
    background: #0d1929;
    padding: 60px 0 30px 0;
    padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(201, 184, 150, 0.2);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: var(--font-primary);
    font-size: var(--text-h4);
    font-weight: var(--weight-medium);
    color: #C9B896;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-text {
    font-family: var(--font-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--weight-light);
    line-height: var(--lh-comfortable);
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-family: var(--font-primary);
    font-size: var(--text-body-sm);
    font-weight: var(--weight-light);
    color: rgba(242, 242, 242, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C9B896;
}

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

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

.social-icon:hover {
    background: rgba(26, 89, 104, 0.3);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-copyright {
    font-family: var(--font-primary);
    font-size: var(--text-caption);
    font-weight: var(--weight-light);
    color: rgba(242, 242, 242, 0.5);
}

.footer-age-notice {
    font-family: var(--font-primary);
    font-size: var(--text-micro);
    font-weight: var(--weight-regular);
    color: #C9B896;
    margin-top: 10px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
    .about-us-section,
    .blog-section,
    .contact-section,
    .testimonials-section,
    .why-us-section,
    .faq-section {
        padding: 40px 20px;
    }

    .about-us-heading,
    .blog-heading,
    .contact-heading,
    .testimonials-heading,
    .why-us-heading,
    .faq-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    /* About Us Responsive */
    .about-us-text-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-us-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-value-card {
        padding: 30px 20px;
    }

    /* Blog Responsive */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-image {
        height: 200px;
    }

    /* Contact Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-column,
    .contact-form-column {
        padding: 35px 30px;
    }

    .contact-info-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-us-card {
        padding: 35px 30px;
    }

    .why-us-card::before {
        font-size: 60px;
        top: 15px;
        right: 20px;
    }

    .why-us-cta-wrapper {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .why-us-cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 28px;
        font-size: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 640px) {
    .about-us-section,
    .blog-section,
    .contact-section,
    .testimonials-section,
    .why-us-section,
    .faq-section,
    .footer-section {
        padding: 35px 20px 25px 20px;
    }

    .about-us-container,
    .blog-container,
    .contact-container,
    .testimonials-container,
    .why-us-container,
    .faq-container,
    .footer-container {
        padding: 0;
    }

    .about-us-heading,
    .blog-heading,
    .contact-heading,
    .testimonials-heading,
    .why-us-heading,
    .faq-heading {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    /* About Us Mobile */
    .about-us-text-column {
        padding: 30px 25px;
    }

    .about-us-subtitle {
        font-size: 18px;
    }

    .about-us-text {
        font-size: 14px;
    }

    .about-us-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-value-card {
        padding: 30px 25px;
    }

    .value-title {
        font-size: 15px;
    }

    .value-description {
        font-size: 13px;
    }

    /* Blog Mobile */
    .blog-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .blog-grid {
        gap: 25px;
    }

    .blog-card {
        border-radius: 10px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 25px 20px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-excerpt {
        font-size: 13px;
    }

    /* Contact Mobile */
    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .contact-info-column,
    .contact-form-column {
        padding: 30px 25px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 20px;
    }

    .contact-info-description,
    .contact-form-description {
        font-size: 14px;
    }

    .contact-info-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .contact-info-item {
        padding: 15px 12px;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-info-label {
        font-size: 11px;
    }

    .contact-info-value {
        font-size: 13px;
    }

    .whatsapp-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .contact-cta-box {
        padding: 20px;
    }

    .contact-whatsapp-cta {
        padding: 12px 28px;
        font-size: 12px;
    }

    .form-label {
        font-size: 12px;
    }

    .form-input {
        font-size: 13px;
        padding: 10px 14px;
    }

    .form-submit-btn {
        padding: 14px 32px;
        font-size: 13px;
        width: 100%;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px;
    }

    .faq-answer-content {
        font-size: 14px;
        padding: 0 20px 20px 20px;
    }
}

/* ==================== HERO SECONDARY BUTTON ==================== */
/* Diseño idéntico al CTA del navegador */
.hero-secondary-btn {
    display: inline-block;
    background: rgba(201, 184, 150, 0.1);
    border: 2px solid #C9B896;
    color: #C9B896 !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: var(--weight-medium);
    font-size: var(--text-caption);
    letter-spacing: var(--ls-normal);
    text-transform: uppercase;
    font-family: var(--font-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 184, 150, 0.3);
}

.hero-secondary-btn:hover {
    background: transparent;
    border-color: #C9B896;
    box-shadow: none;
    transform: translateY(-2px);
}

/* ==================== PRE-FOOTER CTA SECTION ==================== */
.pre-footer-cta {
	background: linear-gradient(135deg, #1a5968 0%, #0d1929 100%);
	padding: 50px 40px;
	text-align: center;
}

.cta-content {
	max-width: 900px;
	margin: 0 auto;
}

.cta-title {
	font-family: var(--font-primary);
	font-size: var(--text-h1);
	font-weight: var(--weight-light);
	color: #F2F2F2;
	margin-bottom: 15px;
	letter-spacing: var(--ls-widest);
	line-height: var(--lh-tight);
}

.cta-subtitle {
	font-family: var(--font-primary);
	font-size: var(--text-h3);
	color: #C9B896;
	margin-bottom: 40px;
	font-weight: var(--weight-light);
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.cta-phone-btn {
	font-family: var(--font-primary);
	background: transparent;
	color: #C9B896;
	padding: 18px 40px;
	border-radius: 8px;
	text-decoration: none;
	font-size: var(--text-h4);
	font-weight: var(--weight-medium);
	letter-spacing: var(--ls-tight);
	transition: all 0.3s ease, opacity 0.3s ease;
	border: 2px solid #C9B896;
	opacity: 1;
}

.cta-phone-btn:hover {
	background: rgba(201, 184, 150, 0.15);
	box-shadow: 0 0 20px rgba(201, 184, 150, 0.4);
	color: #C9B896;
	opacity: 1;
}

.cta-quote-btn {
	font-family: var(--font-primary);
	background: rgba(201, 184, 150, 0.15);
	color: #C9B896;
	padding: 18px 40px;
	border-radius: 8px;
	text-decoration: none;
	font-size: var(--text-h4);
	font-weight: var(--weight-medium);
	letter-spacing: var(--ls-tight);
	border: 2px solid #C9B896;
	box-shadow: 0 0 20px rgba(201, 184, 150, 0.4);
	transition: all 0.3s ease, opacity 0.3s ease;
	opacity: 1;
}

.cta-quote-btn:hover {
	background: transparent;
	box-shadow: none;
	color: #C9B896;
	opacity: 1;
}

@media (max-width: 968px) {
	.pre-footer-cta {
		padding: 40px 30px;
	}

	.cta-title {
		font-size: 32px;
	}

	.cta-subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.cta-buttons {
		flex-direction: column;
		width: 100%;
	}

	.cta-phone-btn,
	.cta-quote-btn {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 640px) {
	.cta-title {
		font-size: 26px;
	}

	.cta-subtitle {
		font-size: 14px;
	}

	.cta-phone-btn,
	.cta-quote-btn {
		padding: 16px 30px;
		font-size: 14px;
	}
}

/* Extra-small mobile */
@media (max-width: 480px) {
    .about-us-section,
    .blog-section,
    .contact-section,
    .testimonials-section,
    .why-us-section,
    .faq-section,
    .footer-section {
        padding: 25px 15px 20px 15px;
    }

    .about-us-heading,
    .blog-heading,
    .contact-heading,
    .testimonials-heading,
    .why-us-heading,
    .faq-heading {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .why-us-card {
        padding: 25px 20px;
    }

    .why-us-card::before {
        font-size: 50px;
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px;
    }

    .faq-answer-content {
        font-size: 13px;
        padding: 0 16px 16px 16px;
    }

    .pre-footer-cta {
        padding: 30px 15px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .cta-phone-btn {
        padding: 14px 24px;
        font-size: 14px;
        box-sizing: border-box;
        width: 100%;
        text-align: center;
        background: transparent;
        border: 1.5px solid #C9B896;
    }

    .cta-quote-btn {
        padding: 14px 24px;
        font-size: 13px;
        box-sizing: border-box;
        width: 100%;
        text-align: center;
        background: #C9B896;
        color: #0D131E;
        border: 1.5px solid #C9B896;
        font-weight: 600;
        box-shadow: none;
    }

    .contact-info-column,
    .contact-form-column {
        padding: 25px 15px;
    }

    /* Footer - 2 columns on small phones */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 12px;
    }

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

    .footer-links a {
        font-size: 12px;
        padding: 2px 0;
        display: inline-block;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .footer-copyright {
        font-size: 10px;
    }

    .footer-age-notice {
        font-size: 9px;
    }

    /* Blog - tighter on small phones */
    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 18px 15px;
    }

    .blog-title {
        font-size: 15px;
    }

    .blog-excerpt {
        font-size: 12px;
    }

    .blog-category {
        font-size: 9px;
        padding: 3px 10px;
    }

    .blog-read-more {
        font-size: 10px;
    }

    /* About - tighter cards */
    .about-us-text-column {
        padding: 20px 15px;
    }

    .about-us-subtitle {
        font-size: 16px;
    }

    .about-us-text {
        font-size: 13px;
    }

    .about-value-card {
        padding: 20px 15px;
    }

    .value-title {
        font-size: 13px;
    }

    .value-description {
        font-size: 12px;
    }

    /* Contact form - iOS zoom prevention + touch targets */
    .form-input {
        font-size: 16px;
        padding: 14px 12px;
    }

    .form-submit-btn {
        min-height: 48px;
        font-size: 12px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 18px;
    }
}
