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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #1a1a1a;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    transition: font-size 0.3s ease;
}

.language-selector select {
    padding: 0.5rem 0.5rem 0.5rem 0.8rem;
    border-radius: 5px;
    border: 1px solid #fff;
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    padding-right: 2rem;
    min-width: 160px;
}

.language-selector select option {
    background-color: #1a1a1a;
    color: white;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.language-selector select:focus {
    outline: none;
    border-color: #fbe609;
    box-shadow: 0 0 0 2px rgba(251, 230, 9, 0.2);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('2.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 2rem 4rem;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 2rem;
    color: #fbe609;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #808080;
}

.form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.form-container h3 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fff;
    color: #333;
}

input::placeholder {
    color: #999;
}

input:focus {
    outline: none;
    border-color: #fbe609;
    background-color: #fff;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 2px;
}

/* Ajuste para dispositivos móviles */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    background-color: #f5f5f5;
}

.feature {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #fbe609;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.feature h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.services {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('Ribadavia-Turismo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 2rem;
    position: relative;
}

.services h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border: 2px solid #fbe609;
    border-radius: 10px;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.service-item:hover {
    background-color: #fbe609;
    transform: translateY(-5px);
}

.service-item i {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #fbe609;
}

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

.footer-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.5rem;
        padding: 0 10px;
    }
    
    .feature-item {
        flex: 1;
        max-width: 33%;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .contact-form {
        margin: 2rem;
        padding: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .language-selector select {
        min-width: 120px;
        font-size: 0.8rem;
        padding: 0.4rem 0.4rem 0.4rem 0.6rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
}

/* Estilos para la sección de servicios detallados */
.services-detail {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.service-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-detail-item:hover {
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    width: 300px;
    padding-right: 20px;
}

.service-icon {
    flex: 0 0 80px;
    text-align: center;
    margin-right: 20px;
}

.service-icon i {
    font-size: 2.5em;
    color: #007bff;
}

.service-content {
    flex: 1;
    border-left: 1px solid #eee;
    padding-left: 40px;
}

.service-content h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
}

/* Responsive design */
@media (max-width: 768px) {
    .service-detail-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .service-header {
        width: 100%;
        padding-right: 0;
    }

    .service-detail-item .service-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 15px;
        text-align: left;
    }

    .service-icon {
        margin: 0 15px 0 0;
        flex: 0 0 40px;
    }

    .service-icon i {
        font-size: 2em;
    }

    .service-content {
        text-align: left;
        border-left: none;
        padding-left: 0;
    }

    .service-content h4 {
        margin: 0;
        font-size: 1.3em;
    }

    .service-content ul {
        margin-top: 15px;
    }

    .service-content li {
        text-align: left;
        margin-left: 40px;
    }
}

/* Estilos para la sección de características adicionales */
.additional-features {
    padding: 80px 0;
    background-color: #808080;
    color: #fff;
}

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

.additional-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.additional-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.additional-feature-item .feature-icon {
    flex: 0 0 80px;
    height: 80px;
    background-color: #fbe609;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.additional-feature-item .feature-icon i {
    font-size: 2em;
    color: #1a1a1a;
}

.additional-feature-item .feature-content {
    flex: 1;
}

.additional-feature-item h4 {
    font-size: 1.4em;
    color: #fff;
    margin-bottom: 10px;
}

.additional-feature-item p {
    color: #f0f0f0;
    line-height: 1.6;
}

/* Responsive design para características adicionales */
@media (max-width: 768px) {
    .additional-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .additional-feature-item .feature-icon {
        margin: 0 auto 20px;
    }

    .additional-feature-item .feature-content {
        text-align: center;
    }
}

.additional-features .section-title {
    text-align: center;
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 50px;
}

.hero-description {
    max-width: 800px;
    margin: 1.5rem auto;
    line-height: 1.6;
    font-size: 1.1rem;
    color: white;
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        padding: 0 15px;
        margin: 1rem auto;
    }
}

.service-areas {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('Ribadavia-Turismo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    margin-top: 40px;
    position: relative;
}

.service-areas .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-areas-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-locations, .tourist-attractions {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.service-areas h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-areas p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.locations-list, .attractions-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.locations-list li, .attractions-list li {
    background-color: #f0f0f0;
    padding: 8px 15px;
    border-radius: 20px;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.locations-list li:hover, .attractions-list li:hover {
    background-color: #fbe609;
    transform: translateY(-2px);
}

.welcome-message {
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .service-areas-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-areas {
        padding: 40px 0;
    }

    .service-areas h3 {
        font-size: 1.5rem;
    }

    .service-areas p {
        font-size: 1rem;
    }

    .locations-list, .attractions-list {
        justify-content: center;
    }
}

/* Sección de Testimonios */
.testimonials {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-info h4 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.rating {
    color: #fbe609;
    margin-top: 0.3rem;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin: 1rem 0;
}

.testimonial-source {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-source i {
    color: #4285f4;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        margin: 0 1rem;
    }
} 