@charset "UTF-8";



:root {
  --bg-color: #fffdf5;
  --text-color: #103713; 
}

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

body {
	
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	
  font-family: "Helvetica Neue", sans-serif;
}


.header {
  position: sticky;
  top: 0;
  width: 100%;
  transition: transform 0.4s ease;
  z-index: 1000;
  background-color: #103713;
  
}

body:has(.content:in-view) .header {
  transform: translateY(-20%);
}


.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px; 
}

.logo img {
    height: 70px; 
    display: block; 
}

.nav {
  display: flex;
  gap: 60px; 

  
}

.nav a {
  text-decoration: none;
  color: #fffdf5;
  font-size: 22px; 
  font-weight: 500;
  line-height: 1.2; 
}




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

body {
    font-family: Arial, Helvetica, sans-serif; 
    background-color: #fffdf5; 
    color: #103713; 
}

.titulo {
    display: flex;
    align-items: center;
    margin: 60px 100px; 
}

.linea-vertical {
    width: 8px; 
    height: 80px; 
    background-color: #628b35; 
    margin-right: 20px;
    border-radius: 10px;
}

.titulo h1 {
    font-size: 80px; 
}


.timeline {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 100px;
}


.evento {
    position: relative;
    width: 50%;
    padding: 40px;
}

.evento.izquierda {
    left: 0;
    text-align: right;
}

.evento.derecha {
    left: 50%;
    text-align: left;
}


.evento::after {
    content: "";
    position: absolute;
    top: 50px;
    width: 20px; /* CAMBIAR tamaño */
    height: 20px; /* CAMBIAR tamaño */
    background-color: #628b35; /* CAMBIAR */
    border-radius: 50%;
    z-index: 2;
}

.evento.izquierda .contenido p {
    margin-left: auto;
    
}

.evento.derecha .contenido p {
    margin-right: auto;
}


.contenido h3 {
    background-color: #628b35; 
    color: white;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 12px 30px;
    border-radius: 15px; 
    margin-bottom: 15px;

}

.contenido p {
    font-size: 18px; 
    max-width: 480px; 
    line-height: 1.6;
}


.evento-con-imagen {
    margin-bottom: 150px; 
}

.evento.izquierda::before {
    right: 0;
}

.evento.derecha::before {
    left: 0;
}

.circulo-imagen {
    position: absolute;
    left: -300px; 
    top: -39px;
    width: 200px; 
    height: 200px; 
    border-radius: 50%;
    z-index: 5;
}

.circulo-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; 
    border: 5px solid #628b35; 
    position: relative;
    z-index: 2; 
}

.circulo-imagen::after {
    content: "";
    position: absolute;
    top: 100px;
    right: -105px;
    width: 110px;
    height: 6px; 
    background-color: #628b35;
    z-index: 1; 
}

.linea-central {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 8px; 
    height: 100%;
    background-color: #628b35;
    border-radius: 20px;
}

.evento::after {
    content: "";
    position: absolute;
    top: 52px;
    width: 24px;
    height: 24px;
    background-color: #628b35;
    border-radius: 50%;
    z-index: 2;
}


.evento.izquierda::after { right: -12px; }
.evento.derecha::after { left: -12px; }

.evento::before {
    content: "";
    position: absolute;
    top: 61px;
    width: 50px; 
    height: 6px;
    background-color: #628b35;
    z-index: 1;
}


.site-footer {
    background-color: #103713; 
    color: #FFFDF5; 

    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 70px 20px;
    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;
    }
}