/* estilos.css */

/* Reset basics (optional) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #fff;
  color: #000;
}

/* HEADER */
.main-header {
  background-color: #f6f6f6; /* very light grey */
    font-size: 1.25rem;
    font-weight: 900; 
  color: #333;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #F00000;
}

.main-header .logo {
  font-size: 1.75rem;
  font-weight: bold;
  color: #F00000;
}

.main-nav a {
  color: #333;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #F00000;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -5px;
  left: 0;
}

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

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

/* FOOTER */
.main-footer {
  background: #e9ecef;
  color: #555;
  padding: 32px 0 20px 0;
  font-size: 1rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-info {
  flex: 1 1 300px;
  min-width: 220px;
}

.footer-info a {
  color: #F00000;
  text-decoration: none;
}
.footer-info a:hover {
  text-decoration: underline;
}

.footer-logos-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;    /* Center the block */
  gap: 10px;
  min-width: 180px;
}

.footer-logos-row {
  display: flex;
  gap: 16px;
  justify-content: center; /* Center images in each row */
}

.footer-logos-row img {
  max-height: 60px;
  max-width: auto;
  width: auto;
  height: auto;
  display: block;
  filter: grayscale(0.1) brightness(0.98);
  transition: filter 0.2s;
}

.footer-logos-row img:hover {
  filter: grayscale(0.5) brightness(1.5);
}

@media (max-width: 800px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-logos-vertical {
    align-items: center;
    min-width: 0;
  }
  .footer-logos-row {
    justify-content: center;
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #F00000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.footer-links a:hover {
  color: #222;
  border-bottom: 1px solid #F00000;
}

/* Home Page Styles */

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff0f0;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #F00000;
  margin-bottom: 1rem;
}

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

.cta-button {
  background-color: #F00000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #c40000;
}

.highlights {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.highlight h2 {
  font-size: 2rem;
  color: #F00000;
}

.highlight p {
  font-size: 1rem;
  color: #333;
}

/* Image Breaker */
/* Break Image */
.section-break {
  text-align: center;  /* Center the image */
}

.section-break img {
  max-width: 100%;      /* Ensure the image is responsive */
  height: auto;         /* Maintain aspect ratio */
  display: inline-block;
}


/* For mobile responsiveness */
@media (max-width: 768px) {
  .section-break img {
    max-height: 100px;  /* Limit height for mobile if the image is too large */
  }
}

/* Service GAllery */
.gallery-feature-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
  background: #ffffff;
}

.feature-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  flex: 1 1 220px;
  max-width: 280px;
}

.feature-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(59,130,246,0.06);
  padding: 28px 22px;
  text-align: left;
  border-left: 5px solid #F00000;
  transition: 
    box-shadow 0.2s cubic-bezier(.4,0,.2,1),
    transform 0.2s cubic-bezier(.4,0,.2,1),
    border-color 0.2s;
}

.feature-column.right .feature-box {
  border-left: none;
  border-right: 5px solid #F00000;
  text-align: right;
}

.feature-box h3 {
  font-size: 1.25rem;
  color: #222;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-box p {
  color: #555;
  font-size: 1rem;
  margin: 0;
}

.gallery-image-center {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image-center img {
  height: 340px;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .gallery-feature-grid {
    flex-direction: column;
    gap: 32px;
    padding: 32px 0;
  }
  .feature-column {
    flex-direction: row;
    justify-content: space-between;
    max-width: 100vw;
    gap: 16px;
  }
  .feature-box {
    flex: 1 1 120px;
    min-width: 120px;
    padding: 20px 10px;
    text-align: center !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 4px solid #F00000;
  }
  .gallery-image-center img {
    width: 60vw;
    height: auto;
    max-width: 320px;
    min-width: 150px;
  }
}

.feature-box:hover {
  box-shadow: 0 8px 32px rgba(59,130,246,0.14);
  transform: translateY(-8px) scale(1.03);
  border-left: 5px solid #F00000; /* Accent color on hover */
}

/* For right column boxes */
.feature-column.right .feature-box:hover {
  border-left: none;
  border-right: 5px solid #F00000;
}

/* List of Services */
.service-list{

  background: #f6f6f6;

}

.service-list ul {
  display: flex;
  background: #f6f6f6;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
  flex: 1 1 180px;
  max-width: 200px;
}

.icon-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.icon-card svg {
  width: 64px;
  height: 64px;
  color: #F00000;
  display: block;
}

.service-list li:hover .icon-card {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-list p {
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    color: #222;
    margin: 0;
    letter-spacing: 0.5px;
    padding: 0 0.5rem;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .service-list ul {
    gap: 1rem;
  }
  .service-list li {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .icon-card {
    padding: 1.2rem;
  }
  .icon-card svg {
    width: 40px;
    height: 40px;
  }
  .service-list p {
    font-size: 1rem;
  }
}

.icon-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.icon-card svg {
  width: 64px;
  height: 64px;
  color: #F00000;
  transition: color 0.2s;
}

.service-list li:hover .icon-card {
  background: #F00000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-8px) scale(1.06);
}

.service-list li:hover .icon-card svg {
  color: #fff;
}
/*Stats Section */

.stats-section {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  flex: 1 1 200px;
  background: #f6f6f6;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(59,130,246,0.06);
  border-bottom: 5px solid #F00000;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #F00000;
  margin-bottom: 0.5rem;
}

.stat-item p {
  margin: 0.2rem 0;
  font-weight: 600;
  color: #333;
}

.stat-description {
  font-weight: 400;
  color: #777;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

@media (max-width: 600px) {
  .stats-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-item {
    flex: 1 1 100%;
  }
}
/* More Info */
.more-info {
  padding: 3rem 1rem;
  background: #f6f6f6;
  text-align: center;
}

.more-info h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.more-info-columns {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.info-col {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(59,130,246,0.06);
  padding: 2rem 1.5rem 2.5rem 1.5rem;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-icon {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-col h3 {
  font-size: 1.22rem;
  color: #F00000;
  font-weight: 600;
  margin-bottom: 1rem;
  min-height: 4.5rem; /* Ensures all titles align */
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.info-col p {
  color: #555;
  font-size: 1rem;
  text-align: justify;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1000px) {
  .more-info-columns {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .info-col {
    max-width: 95vw;
  }
}

.more-info-note {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 2.15rem;
  color: #F00000;
  font-weight: 700;
  letter-spacing: 0.5px;
}
/* Contact us */

.contact-us {
  padding: 2rem;
  background-color: #fff;
}

.contact-us form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-us input, .contact-us textarea {
  width: 80%;
  padding: 1rem;
  margin: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-us button {
  padding: 1rem 2rem;
  background-color: #F00000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.contact-us button:hover {
  background-color: #d00000;
}

/* review */

.reviews-section {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

.reviews-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.review-item {
  flex: 1 1 200px;
  background: #f6f6f6;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(59,130,246,0.06);
  border-bottom: 5px solid #F00000;
  min-width: 220px;
  max-width: 320px;
}

.review-text {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 0.8rem;
  font-style: italic;
  font-weight: 600;
}

.review-author {
  font-weight: bold;
  color: #272727;
  margin-bottom: 0.5rem;
}

.review-stars {
  color: #dfc673;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .reviews-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .review-item {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100vw;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .reviews-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .review-card {
    max-width: 95vw;
  }
}
/* Call Button */
.floating-call-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #F00000;
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(240, 0, 0, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.call-note {
  font-size: 0.6rem;
  line-height: 1.1;
  margin: 0;
  font-size: 0.7rem;
  padding: 0;
  color: #fff;
  opacity: 0.8;
  font-weight: 400;
}
/* Slide-in window */
.call-window {
  position: fixed;
  right: 0; /* hidden by default */
  width: 10%;
  background: #fff;
  border-radius: 14px 0 0px 14px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.12), 0 1.5px 8px rgba(240,0,0,0.10);
  z-index: 1300;
  overflow: hidden;
  transition: right 0.4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}

.call-window-header {
  background: #b2b3b7;
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  padding: 1.1rem 1.3rem 1.1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.call-window-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 10px;
  font-weight: 700;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.call-window-close:hover {
  opacity: 1;
}

.call-window-body {
  background: #fff;
  padding: 2rem 1.3rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.call-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: #F00000;
  margin-bottom: 1.1rem;
  letter-spacing: 1px;
    white-space: nowrap;        /* Prevent line break */
  overflow: hidden;           /* Hide overflowed text */
  text-overflow: ellipsis;    /* Show ... if too long */

}

.call-action-btn {
  background: #F00000;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 12px rgba(240,0,0,0.09);
  transition: background 0.2s;
  display: inline-block;
}
.call-action-btn:hover {
  background: #c40000;
}

.call-note {
  font-size: 0.9rem;
  color: #555;
  opacity: 0.85;
  text-align: center;
}

.logo-call {
  height: 50px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .call-window, .call-window.open {
    width: 95vw;
    right: -100vw;
    border-radius: 14px 14px 0 0;
    bottom: 0;
    left: 2.5vw;
    transition: right 0.4s cubic-bezier(.4,0,.2,1);
  }
  .call-window.open {
    right: 2.5vw;
  }
}
/* COOKIE */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  z-index: 2000;
  padding: 1.2rem 0.8rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  font-size: 1rem;
  display: none;
  animation: slideUp 0.5s;
}

@keyframes slideUp {
  from { transform: translateY(100%);}
  to { transform: translateY(0);}
}

.cookie-banner-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-banner a {
  color: #dfc673;
  text-decoration: underline;
}

.cookie-btn {
  background: #F00000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: 1rem;
  transition: background 0.2s;
}
.cookie-btn:hover {
  background: #c40000;
}

@media (max-width: 600px) {
  .cookie-banner-content {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}
