:root {
    --primary-color: #3D6F51;
    --primary-dark: #2d5340;
    --primary-light: #4d8061;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9f5;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

.hero-section {
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/hero-path.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 72px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .lead {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.disclaimer-hero {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.content-section {
    padding: 80px 0;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(61, 111, 81, 0.3);
}

.info-card, .component-card, .myth-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover, .component-card:hover, .myth-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.bg-light .info-card, .bg-light .component-card, .bg-light .myth-card {
    background-color: var(--white);
}

.component-card ul {
    list-style: none;
    padding-left: 0;
}

.component-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.component-card ul li:last-child {
    border-bottom: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.accordion .card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion .card-header {
    background-color: var(--white);
    border-bottom: none;
    padding: 0;
}

.accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    display: block;
}

.accordion .btn-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.accordion .card-body {
    padding: 1.5rem;
    background-color: var(--bg-light);
}

.disclaimer-box {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box p {
    margin-bottom: 1.5rem;
}

.disclaimer-final {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.contact-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(61, 111, 81, 0.25);
}

footer {
    background-color: #2a3f35;
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 0;
}

footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-disclaimer {
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 63, 53, 0.98);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 10px 10px 0 0;
}

.modal-title {
    color: var(--white);
}

.modal-header .close {
    color: var(--white);
    opacity: 0.9;
}

.modal-header .close:hover {
    opacity: 1;
}

.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
}

.modal-body h3 {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.alert-info {
    background-color: #e8f4f0;
    border-color: var(--primary-light);
    color: var(--text-color);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .hero-section {
        min-height: 500px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .nav-link {
        padding: 0.75rem 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .info-card, .component-card, .myth-card, .contact-info, .contact-form-wrapper {
        padding: 1.5rem;
    }

    .disclaimer-box {
        padding: 1.5rem;
    }
}

.text-balance {
    text-wrap: balance;
}

.smooth-scroll {
    scroll-behavior: smooth;
}
