@charset "UTF-8";

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

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


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


.hero {
    position: relative;
    width: 90%;
    margin: auto;
    border-radius: 20px; 
    overflow: hidden;
    margin-top: 150px;
}

.hero img {
    width: 100%;
    height: 500px; 
    object-fit: cover;
    filter: brightness(60%); 
}


.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 48px; 
    font-weight: bold;
}


.info {
    text-align: center;
    margin-top: 80px; 
}

.info h2 {
    font-size: 40px; 
    margin-bottom: 50px;
}

.circulos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px; 
    width: 80%;
    margin: auto;
}

.circulo {
    position: relative;
    width: 350px; 
    height: 350px; 
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #628b35; 
    text-decoration: none;
    color: white;
}

.circulo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: 0.3s;
}
.circulo span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px; 
    font-weight: bold;
    text-align: center;
}

.circulo:hover img {
    filter: brightness(100%);
    transform: scale(1.1);
}

.header {
  position: absolute;
  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; 
}

.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;
    }
}

