/* Font and Color Variables */
:root {
    --primary-color: #4a90e2;
    --secondary-color: #4a90e2;
    --accent-color: #357abd;
    --text-color: #333;
    --text-light: #6B717E;
    --white: #FFFFFF;
    --bg-light: #F5F5F7;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    height: 100px; /* Fixed height for consistency */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo-image {
    height: 80px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.reserve-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.reserve-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../imagens/benavente2.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.scroll-down {
    display: block;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
}

.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll-down 2s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    position: relative;
    color: #333;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #4a90e2;
    margin: 10px auto 0;
}

/* Featured Section */
.featured-section {
    padding: 100px 0;
    position: relative;
}

.featured-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.featured-content {
    padding: 20px;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.highlights h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.highlights h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.highlights ul {
    list-style: none;
}

.highlights li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 10px;
    border-radius: 5px;
}

.highlights li:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(5px);
}

.highlights li i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Image Gallery */
.image-gallery {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Accommodation Features */
.accommodation-features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.8);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 30px;
    color: var(--white);
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    text-align: center;
    padding: 40px;
    display: none;
    animation: fadeIn 1s ease;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.footer-info {
    text-align: center;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 100px;
    margin-bottom: 15px;
    transform: translateY(-15px);
}

.footer-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    grid-column: 3;
    grid-row: 1;
}

.footer-contact {
    grid-column: 1;
    grid-row: 1;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.7);
}

.footer .reserve-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    margin-top: 0;
    transform: translateY(-10px);
}

.footer-info .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.footer-info .social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-info .social-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .welcome-section .container {
        padding: 0 20px;
    }
    
    .welcome-text {
        padding: 30px 20px;
        transform: translateY(-30px);
    }
    
    .welcome-text h2 {
        font-size: 2rem;
    }
    
    .welcome-text p {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-info, .footer-links, .footer-contact {
        grid-column: 1;
    }
    
    .footer-contact {
        grid-row: 1;
    }
    
    .footer-info {
        grid-row: 2;
    }
    
    .footer-links {
        grid-row: 3;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-text h2 {
        font-size: 2rem;
    }
}

/* Descriptions Grid Section */
.descriptions {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.descriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.description-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.description-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.description-card i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.description-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.description-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .descriptions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .description-card {
        padding: 1.5rem;
    }
}

/* Main Image Section */
.main-image-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.main-image-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-feature-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.main-feature-image:hover {
    transform: scale(1.02);
}

/* Additional Images Section */
.additional-images {
    padding: 80px 0;
    background-color: var(--white);
}

.image-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.image-slot {
    aspect-ratio: 16/9;
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-slot:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.image-slot:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments for images */
@media (max-width: 1024px) {
    .main-image-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .image-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .image-showcase {
        grid-template-columns: 1fr;
    }
    
    .main-feature-image {
        border-radius: 10px;
    }
}

/* Reservation Form Overlay */
.reserva-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.reserva-form-overlay.hidden {
    display: none;
}

.reserva-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.reserva-form h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.reserva-form .form-group {
    margin-bottom: 15px;
}

.reserva-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.reserva-form .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.reserva-form .submit-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: var(--transition);
}

.reserva-form .submit-btn:hover {
    background: var(--accent-color);
}

.reserva-form .close-btn {
    background: transparent;
    color: var(--text-color);
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: var(--transition);
}

.reserva-form .close-btn:hover {
    background: #f5f5f5;
}

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

.loading {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

/* Keep these unique styles */

.hero-image {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/b/b7/Reserva_natural_do_estu%C3%A1rio_do_Tejo.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 50vh;
    margin-bottom: 2rem;
}

/* Image Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 900px;
    position: relative;
    animation: modalFadeIn 0.5s;
}

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

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: #333;
}

.modal-text {
    padding: 10px 0;
}

.modal-text h2 {
    margin-bottom: 15px;
    color: #4a90e2;
    font-size: 24px;
}

.modal-text img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px 0;
}

.modal-text p {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Activity Modal Specific Styles */
.activity-modal-content {
    padding: 0;
    overflow: hidden;
    max-width: 1000px;
}

.activity-modal-body {
    display: flex;
    flex-direction: column;
}

.activity-modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.activity-modal-info {
    padding: 25px;
}

.activity-modal-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4a90e2;
    font-family: 'Playfair Display', serif;
}

.activity-modal-description {
    color: #555;
    line-height: 1.7;
}

.activity-modal-description h3 {
    margin: 20px 0 10px;
    color: #333;
    font-size: 20px;
}

.activity-modal-description ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.activity-modal-description li {
    margin-bottom: 8px;
}

.activity-modal-description p {
    margin-bottom: 12px;
}

.activity-modal-description strong {
    font-weight: 600;
}

@media (min-width: 768px) {
    .activity-modal-body {
        flex-direction: row;
    }
    
    .activity-modal-image {
        width: 40%;
        height: auto;
    }
    
    .activity-modal-info {
        width: 60%;
        padding: 30px;
        max-height: 600px;
        overflow-y: auto;
    }
}

/* History Section */
.history-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.history-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.history-image {
    flex: 1;
    max-width: 500px;
}

.history-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.history-text {
    flex: 1;
}

.history-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

/* Activities Section */
.activities-section {
    padding: 60px 0;
    background-color: #fff;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.activity-card {
    display: flex;
    flex-direction: column;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.activity-content p {
    margin-bottom: 15px;
    color: #555;
}

.activity-link {
    display: inline-block;
    color: #4a90e2;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.activity-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #4a90e2;
    transition: width 0.3s ease;
}

.activity-link:hover:after {
    width: 100%;
}

/* Responsive styles for history and activities */
@media (max-width: 992px) {
    .history-content {
        flex-direction: column;
    }
    
    .history-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('../imagens/benavente natureza.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 10;
}

.welcome-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-text {
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-50px);
    border-top: 4px solid var(--primary-color);
}

.welcome-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.welcome-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.welcome-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
}

.welcome-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.welcome-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .welcome-text {
        padding: 30px 20px;
    }
    
    .welcome-text h2 {
        font-size: 2rem;
    }
    
    .welcome-text p {
        font-size: 1.1rem;
    }
}

/* Benavente Logo */
.benavente-logo {
    max-width: 150px;
    margin: 0 auto 20px;
}

.benavente-logo-img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1); /* Make logo white */
}
  