
:root {
    --phthalo-green: #103713;
    --maximum-green: #628B35;
    --milk: #FFFDF5;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Helvetica, sans-serif;
    background-color: var(--milk);
    color: var(--phthalo-green);
    line-height: 1.6;

}


.container-a {
    max-width: 1100px;
    width: 100%;
    margin: 60px auto 40px auto; 
    padding: 0 20px;   
}


.page-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--phthalo-green);
    border-left: 8px solid var(--maximum-green);
    padding-left: 20px;
    margin-bottom: 40px;
}


.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}


.info-card {
    background-color: var(--milk);
    border: 1px solid rgba(98, 139, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(16, 55, 19, 0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 2px solid var(--maximum-green);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.address-details {
    list-style: none;
    margin-bottom: 25px;
}

.address-details li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.address-details strong {
    color: var(--phthalo-green);
}

.btn-llegar {
    display: inline-flex;
    align-items: center;
    color: var(--maximum-green);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.btn-llegar:hover {
    color: var(--phthalo-green);
}

.btn-llegar::after {
    content: '↗';
    margin-left: 8px;
    font-size: 1.3rem;
}


.schedule-section {
    display: flex;
    flex-direction: column;
}

.section-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--phthalo-green);
    margin-bottom: 20px;
    font-weight: bold;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--milk);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 55, 19, 0.08);
    margin-bottom: 25px;
}

.schedule-table th, 
.schedule-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(98, 139, 53, 0.2);
}

.schedule-table th {
    background-color: var(--maximum-green);
    color: var(--milk);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table td {
    font-size: 1.05rem;
    vertical-align: middle;
}


.table-row-group {
    border-left: 4px solid transparent;
    transition: border-color 0.3s ease;
}

.schedule-table tr:hover .table-row-group {
    border-left: 4px solid var(--maximum-green);
}

.rowspan-cell {
    text-align: center;
    border-left: 1px solid rgba(98, 139, 53, 0.2);
    border-right: 1px solid rgba(98, 139, 53, 0.2);
}

.note {
    font-weight: bold;
    color: var(--phthalo-green);
    font-size: 1rem;
    padding: 15px;
    background-color: rgba(98, 139, 53, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--maximum-green);
}


@media (max-width: 850px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 500px) {
    .schedule-table th, .schedule-table td {
        padding: 15px 10px;
        font-size: 0.95rem;
    }
    .page-title {
        font-size: 2rem;
    }
}


.header {
  position: sticky;
  top: 0;
  width: 100%;
  transition: transform 0.4s ease;
  z-index: 1000;
  background-color: #103713;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px; 
}

.nav {
  display: flex;
  gap: 60px; 
}

.nav a {
  text-decoration: none;
  color: #fffdf5;
  font-size: 22px; 
  font-weight: 500;
  line-height: 1.2; 
}
.logo img {
    height: 70px;  
}


.site-footer {
    background-color: #103713; 
    color: #FFFDF5; 

    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 70px 20px;
    display: block; 
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: center;

    align-items: stretch; 
    max-width: 1000px;
    margin: 0 auto;
    gap: 60px; 
}

.footer-left-section {
    display: flex;
    align-items: flex-start;
    gap: 40px; 
}


.footer-logo {
    width: 80px; 
    height: auto;
    display: block;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.footer-links li a {
    color: #FFFDF5; 
    text-decoration: none;
    font-size: 18px;
    font-weight: 500; 
    letter-spacing: 0.3px;
    transition: opacity 0.2s ease;
}

.footer-links li a:hover {
    opacity: 0.7;
}


.footer-divider {
    width: 6px;
    background-color: #628B35;
    border-radius: 4px;
    flex-shrink: 0;
}


.footer-right-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    padding-top: 5px;
    padding-bottom: 5px;
}

.contact-block {
    margin-bottom: 25px;
}

.contact-block:last-child {
    margin-bottom: 0;
}


.contact-block strong {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}


.contact-block p, .contact-block a {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #FFFDF5;
    text-decoration: none;
    font-weight: 400;
}

.contact-block a:hover {
    text-decoration: underline;
}


.phone-block p {
    margin-bottom: 8px;
}


.light-text {
    font-weight: 300;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-left-section {
        flex-direction: column; 
        align-items: center;
        gap: 30px;
    }


    .footer-divider {
        width: 80px;
        height: 6px;
        align-self: center;
    }

    .footer-right-section {
        align-items: center;
    }
}