/* 
 * Equityvb - Main Stylesheet
 * Created: 2026
 */

/* ======================================
   General Styles
   ====================================== */
:root {
    --primary: #2D5C88;
    --primary-dark: #204468;
    --primary-light: #3A7CB8;
    --secondary: #E8A64A;
    --secondary-dark: #D08C30;
    --secondary-light: #F0BD6B;
    --tertiary: #4DAA9C;
    --text-dark: #333333;
    --text-light: #F7F7F7;
    --bg-light: #FFFFFF;
    --bg-alt: #F9F9F9;
    --border-light: #E5E5E5;
    --alert: #D64541;
    --success: #2ECC71;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover,
a:focus {
    color: var(--primary-dark);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
}

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

.bg-light {
    background-color: var(--bg-alt) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.rounded {
    border-radius: 0.5rem !important;
}

.min-vh-75 {
    min-height: 75vh;
}

.py-md-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
}

/* ======================================
   Button Styles
   ====================================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 92, 136, 0.3);
}

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

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

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 92, 136, 0.3);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 92, 136, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(45, 92, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 92, 136, 0);
    }
}

/* ======================================
   Header & Navigation
   ====================================== */
.header {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.navbar-brand {
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 1rem 1.25rem;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1.25rem;
    right: 1.25rem;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.phone-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.phone-link:hover,
.phone-link:focus {
    color: var(--primary-dark);
    transform: scale(1.05);
}

/* ======================================
   Hero Section
   ====================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.parallax-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateZ(-1px) scale(1.5);
}

.hero-content {
    z-index: 2;
    position: relative;
}

.bg-white-opacity {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

/* ======================================
   Sections Common Styles
   ====================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
}

.page-subtitle {
    color: #666;
}

/* ======================================
   Services Section
   ====================================== */
.service-card {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

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

.service-image {
    margin-bottom: 1.5rem;
    border-radius: 0.375rem;
    overflow: hidden;
}

.service-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.25rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-description {
    color: #666;
    margin-bottom: 0;
}

/* ======================================
   Process Section
   ====================================== */
.process-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

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

.process-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--secondary);
    color: white;
    width: 28px;
    height: 28px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-description {
    color: #666;
    margin-bottom: 0;
}

/* ======================================
   Models Section
   ====================================== */
.model-card {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

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

.model-image {
    height: 200px;
    overflow: hidden;
}

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

.model-content {
    padding: 1.5rem;
}

.model-title {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.model-description {
    color: #666;
    margin-bottom: 1.25rem;
}

.model-subtitle {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.model-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.25rem;
}

.model-features li {
    margin-bottom: 0.5rem;
}

.model-example {
    background-color: rgba(45, 92, 136, 0.05);
    border-left: 3px solid var(--primary);
}

.legal-framework {
    background-color: rgba(232, 166, 74, 0.1);
    border-left: 3px solid var(--secondary);
}

.legal-docs {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.legal-docs li {
    margin-bottom: 0.5rem;
}

/* ======================================
   Benefits Section
   ====================================== */
.benefit-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    height: 60px;
    width: 60px;
    background-color: rgba(45, 92, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.benefit-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-description {
    color: #666;
    margin-bottom: 0;
}

/* ======================================
   Contact Section
   ====================================== */
.contact-form-card {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(45, 92, 136, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(45, 92, 136, 0.25);
}

.contact-card {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(45, 92, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-title {
    margin-bottom: 0.25rem;
}

.contact-text {
    margin-bottom: 0;
    color: #666;
}

.contact-link {
    color: var(--primary);
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
}

.map-card {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.map-container {
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.iti {
    width: 100%;
}

/* ======================================
   Thanks Page
   ====================================== */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.next-step {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

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

.step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    height: 50px;
    width: 50px;
    background-color: rgba(45, 92, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======================================
   Por Que Nosotros Page
   ====================================== */
.methodology-feature,
.impact-item,
.transparency-feature,
.mechanism-feature {
    margin-bottom: 1.5rem;
}

.feature-title,
.impact-title {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.unique-content,
.transparency-card,
.legal-mechanisms-card {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--border-light);
}

.mechanism-example {
    background-color: rgba(45, 92, 136, 0.05);
    border-left: 3px solid var(--primary);
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    height: 60px;
    width: 60px;
    background-color: rgba(45, 92, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.value-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    color: #666;
    margin-bottom: 1.25rem;
}

.value-features {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.value-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.value-features li i {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
}

.cta-box {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

/* ======================================
   Ejemplos Practicos Page
   ====================================== */
.case-study-section {
    overflow: hidden;
}

.case-image {
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.case-subtitle {
    color: var(--primary);
    font-weight: 600;
}

.detail-item {
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.structure-card,
.contribution-card,
.simulation-card,
.gestor-role-card,
.milestone-distribution-card {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.structure-note,
.distribution-note,
.simulation-note,
.incentive-structure,
.verification-process,
.documentation-requirements {
    background-color: rgba(45, 92, 136, 0.05);
    border-left: 3px solid var(--primary);
}

.distribution-phases {
    margin-bottom: 2rem;
}

.phase {
    margin-bottom: 1.5rem;
}

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

.phase-amount {
    font-weight: 600;
    color: var(--primary);
}

.phase-bar {
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 0.25rem;
    display: flex;
    overflow: hidden;
}

.phase-bar div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.socio-a {
    background-color: var(--primary);
}

.socio-b {
    background-color: var(--tertiary);
}

.socio-c {
    background-color: var(--secondary);
}

.socio-d {
    background-color: #6c757d;
}

.distribution-totals {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-light);
}

.totals-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.totals-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.totals-list li.total {
    font-weight: 700;
    margin-top: 0.5rem;
    border-bottom: none;
    padding-bottom: 0;
}

.socio-label {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: white;
    font-weight: 600;
}

.socio-label.socio-a {
    background-color: var(--primary);
}

.socio-label.socio-b {
    background-color: var(--tertiary);
}

.socio-label.socio-c {
    background-color: var(--secondary);
}

.socio-label.socio-d {
    background-color: #6c757d;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 3px;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.marker {
    font-weight: 700;
    color: var(--primary);
}

.timeline-content {
    background-color: rgba(45, 92, 136, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary);
}

.distribution-bar {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.lesson-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.lesson-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    height: 60px;
    width: 60px;
    background-color: rgba(45, 92, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.lesson-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.lesson-description {
    color: #666;
    margin-bottom: 1.25rem;
}

.lesson-points {
    text-align: left;
    padding-left: 1.5rem;
}

.lesson-points li {
    margin-bottom: 0.5rem;
}

/* ======================================
   Contactos Page
   ====================================== */
.faq-section {
    margin-top: 3rem;
}

.accordion-item {
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(45, 92, 136, 0.05);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-light);
}

.transportation-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* ======================================
   Legal Pages (Privacy, Terms, Cookies)
   ====================================== */
.policy-title,
.terms-title,
.cookie-policy-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.policy-updated,
.terms-updated,
.cookie-policy-updated {
    color: #666;
}

.policy-section,
.terms-section,
.cookie-policy-section {
    margin-bottom: 3rem;
}

.policy-section h2,
.terms-section h2,
.cookie-policy-section h2 {
    color: var(--primary);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.policy-section h3,
.terms-section h3,
.cookie-policy-section h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section ul,
.terms-section ul,
.cookie-policy-section ul {
    padding-left: 1.5rem;
}

.policy-section li,
.terms-section li,
.cookie-policy-section li {
    margin-bottom: 0.5rem;
}

address {
    padding: 1.5rem;
    background-color: rgba(45, 92, 136, 0.05);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary);
}

.cookie-type {
    margin-bottom: 2rem;
}

/* ======================================
   Footer
   ====================================== */
.footer {
    background-color: var(--primary);
    color: var(--text-light);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-description {
    opacity: 0.8;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-contact-list {
    list-style: none;
    padding-left: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact-list li i {
    margin-top: 0.25rem;
}

.footer-contact-list a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-contact-list a:hover {
    opacity: 1;
    color: var(--secondary);
}

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

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

.footer-links-list a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
    display: inline-block;
}

.footer-links-list a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    opacity: 0.7;
}

/* ======================================
   Cookie Consent
   ====================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-light);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    display: none;
}

.cookie-content {
    padding: 1.5rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.cookie-settings-content {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-close:hover {
    color: var(--alert);
}

.cookie-settings-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* ======================================
   Modal
   ====================================== */
.modal-content {
    border: none;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--border-light);
    padding: 1.5rem;
}

/* ======================================
   Legal Notice
   ====================================== */
.legal-notice {
    background-color: rgba(45, 92, 136, 0.05);
    border-left: 3px solid var(--primary);
}

.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-switcher a {
    padding: 0 10px;
}

/* ======================================
   Responsive Styles
   ====================================== */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background-color: var(--bg-light);
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: var(--shadow-sm);
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }

    .navbar-light .navbar-nav .nav-link.active::after {
        left: 1rem;
        right: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .process-step,
    .benefit-card,
    .value-card,
    .lesson-card {
        padding: 1.25rem;
    }

    .contact-form-card,
    .contact-card,
    .map-card {
        padding: 1.25rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2rem;
        width: 28px;
        height: 28px;
    }

    .cookie-settings-header,
    .cookie-settings-body,
    .cookie-settings-footer {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 1.5rem !important;
    }

    .model-image {
        height: 150px;
    }

    .policy-title,
    .terms-title,
    .cookie-policy-title {
        font-size: 2rem;
    }
}