/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h2 {
    color: #2c5530;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4a7c59;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: #4a7c59;
    color: white;
}

.btn-primary:hover {
    background: #3a5f47;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #4a7c59;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: white;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

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

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

.info-card i {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #2c5530;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Faro Section */
.faro-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Hero del Faro */
.faro-hero {
    margin-bottom: 4rem;
}

.faro-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.faro-hero-text h3 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.faro-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.faro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faro-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    border-radius: 15px;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.faro-image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.faro-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Historia del Faro */
.faro-history-section {
    margin-bottom: 4rem;
}

.faro-section-title {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.faro-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.faro-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #4a7c59, #2c5530);
    transform: translateX(-50%);
}

.faro-timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.faro-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.faro-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.faro-timeline-date {
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.faro-timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 2rem;
    flex: 1;
    transition: transform 0.3s ease;
}

.faro-timeline-content:hover {
    transform: translateY(-5px);
}

.faro-timeline-content h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.faro-timeline-content p {
    line-height: 1.6;
    color: #666;
}

/* Características Técnicas */
.faro-technical-section {
    margin-bottom: 4rem;
}

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

.faro-technical-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.technical-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.technical-icon i {
    font-size: 3rem;
    color: #4a7c59;
}

.faro-technical-card h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
}

.faro-technical-card ul {
    list-style: none;
}

.faro-technical-card li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.6;
}

.faro-technical-card li::before {
    content: '•';
    color: #4a7c59;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Ruta al Faro */
.faro-route-section {
    margin-bottom: 4rem;
}

.faro-route-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.faro-route-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.route-details h4 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.route-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.route-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.route-stat i {
    color: #4a7c59;
    font-size: 1.2rem;
}

.route-description h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.route-description h5 {
    color: #4a7c59;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.route-description p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
}

.route-description ul {
    margin-left: 1.5rem;
}

.route-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.route-map-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.route-map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Vistas Panorámicas */
.faro-views-section {
    margin-bottom: 4rem;
}

.faro-views-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

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

.view-icon {
    margin-bottom: 1rem;
}

.view-icon i {
    font-size: 2.5rem;
    color: #4a7c59;
}

.faro-view-card h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

/* Curiosidades */
.faro-curiosities-section {
    margin-bottom: 4rem;
}

.faro-curiosities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faro-curiosity-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.faro-curiosity-card h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faro-curiosity-card h4 i {
    margin-right: 0.5rem;
    color: #4a7c59;
}

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

/* Consejos */
.faro-tips-section {
    margin-bottom: 2rem;
}

.faro-tips-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.faro-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tip-icon i {
    font-size: 1.2rem;
}

.faro-tip h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faro-tip p {
    line-height: 1.6;
    color: #666;
    font-size: 0.95rem;
}

/* Estilos específicos para la página del faro */
.faro-page-hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.faro-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.faro-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.faro-hero-content-page {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faro-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.faro-hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.faro-hero-description-page {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.faro-stats-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.faro-stat-page {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number-page {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label-page {
    font-size: 0.9rem;
    opacity: 0.9;
}

.faro-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Secciones específicas de la página del faro */
.faro-history-section-page {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faro-technical-section-page {
    padding: 5rem 0;
    background: white;
}

.faro-route-section-page {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faro-views-section-page {
    padding: 5rem 0;
    background: white;
}

.faro-curiosities-section-page {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faro-tips-section-page {
    padding: 5rem 0;
    background: white;
}

/* Navegación activa */
.nav-link.active {
    color: #4a7c59;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Contenido original del faro (mantener para compatibilidad) */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Playas Section */
.playas-section {
    background: white;
}

.playas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.playa-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.playa-card:hover {
    transform: translateY(-10px);
}

.playa-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.playa-image i {
    font-size: 3rem;
}

.playa-content {
    padding: 2rem;
}

.playa-content h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.playa-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.playa-content ul {
    list-style: none;
}

.playa-content li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.playa-content li::before {
    content: '•';
    color: #4a7c59;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Rutas Section */
.rutas-section {
    background: #f8f9fa;
}

.rutas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ruta-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.ruta-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.ruta-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ruta-info span {
    background: #e8f5e8;
    color: #4a7c59;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.ruta-info i {
    margin-right: 0.5rem;
}

.ruta-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ruta-card ul {
    list-style: none;
}

.ruta-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.ruta-card li::before {
    content: '✓';
    color: #4a7c59;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Naturaleza Section */
.naturaleza-section {
    background: white;
}

.naturaleza-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.naturaleza-text h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.naturaleza-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.naturaleza-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.naturaleza-text li {
    margin-bottom: 0.5rem;
}

/* Cómo Llegar Section */
.como-llegar-section {
    background: #f8f9fa;
}

.como-llegar-content {
    display: grid;
    gap: 4rem;
}

.transporte-info h3 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.transporte-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.transporte-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.transporte-card h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.transporte-card h4 i {
    margin-right: 0.5rem;
    color: #4a7c59;
}

.transporte-card p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.informacion-practica h3 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-item h4 i {
    margin-right: 0.5rem;
    color: #4a7c59;
}

.info-item p {
    line-height: 1.6;
}

/* Historia Section */
.historia-section {
    background: white;
}

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

.historia-timeline {
    position: relative;
}

.historia-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #4a7c59;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: #4a7c59;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #4a7c59;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a7c59;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: #4a7c59;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4a7c59;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a7c59;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Tooltips */
.tooltip {
    position: absolute;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    z-index: 1000;
    display: none;
    pointer-events: none;
    white-space: nowrap;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 15px;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #333;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .naturaleza-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transporte-options {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .historia-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 40px;
    }

    .timeline-date {
        margin-bottom: 1rem;
    }

    .timeline-content {
        margin: 0;
        width: 100%;
    }

    /* Responsive para la sección del faro */
    .faro-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .faro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .faro-timeline::before {
        left: 20px;
    }

    .faro-timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 40px;
    }

    .faro-timeline-date {
        margin-bottom: 1rem;
    }

    .faro-timeline-content {
        margin: 0;
        width: 100%;
    }

    .faro-technical-grid {
        grid-template-columns: 1fr;
    }

    .faro-route-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .route-stats {
        grid-template-columns: 1fr;
    }

    .faro-views-grid {
        grid-template-columns: 1fr;
    }

    .faro-curiosities-grid {
        grid-template-columns: 1fr;
    }

    .faro-tips-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive para la página del faro */
    .faro-hero-title {
        font-size: 2.5rem;
    }

    .faro-hero-subtitle {
        font-size: 1.5rem;
    }

    .faro-hero-description-page {
        font-size: 1rem;
    }

    .faro-stats-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .faro-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .playas-grid {
        grid-template-columns: 1fr;
    }

    .rutas-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
} 