body {
  margin: 0;
  font-family: 'Corben', sans-serif;
  background-color: #fffdf8;
  color: #333;
}

.header-area {
  background-color:#d6f6ff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2e2e2e;
  text-decoration: none;
}

.logo em {
  color: #0a5fd8;
  font-style: normal;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-list li a {
  text-decoration: none;
  color: #2e2e2e;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #16f9f5;
}

.menu-trigger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

.btn-signup {
  background-color: #1684f9;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-signup:hover {
  background-color: #a1ddf7;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    background: #d6f6ff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .nav-list.active {
    display: flex;
  }

  .menu-trigger {
    display: block;
    color: #2e2e2e;
  }
}

.banner-area {
  position: relative;
  background-image: url('../images/hero-dog.jpg'); /* substitua pelo caminho correto */
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 132, 249, 0.4); /* azul com transparência */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  
}

.banner-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #1684f9;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0f6cd1;
}
/* Ajustes para telas menores (mobile) */
@media (max-width: 768px) {
  .banner-area {
    height: 40vh; /* reduz a altura para não ocupar tanto espaço */
    background-position: top; /* foca a imagem na parte mais relevante */
    padding: 1rem; /* dá respiro ao conteúdo */
  }

  .banner-content h1 {
    font-size: 1.8rem; /* título menor para caber bem */
  }

  .banner-content p {
    font-size: 1rem; /* texto mais proporcional */
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Para telas muito pequenas (ex: smartphones antigos) */
@media (max-width: 480px) {
  .banner-area {
    height: auto; /* deixa altura dinâmica */
    padding: 2rem 1rem;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .banner-content p {
    font-size: 0.9rem;
  }
}

.about-holly {
  background-color: #d6f6ff;
  padding: 4rem 0;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(22, 132, 249, 0.2);
}

.about-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2rem;
  color: #1684f9;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #2e2e2e;
  line-height: 1.6;
  margin-bottom: 1rem;
}
/* Para mobile */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column; /* empilha imagem e texto */
    text-align: center; /* centraliza conteúdo */
  }

  .about-image img {
    max-width: 80%; /* reduz imagem para ficar proporcional */
    margin-bottom: 1.5rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
  .about-image img {
    max-width: 100%; /* imagem ocupa toda a largura */
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
.services {
  background-color: #e7faff;
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #1684f9;
  font-family: 'Corben', sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #2e2e2e;
  margin-bottom: 1rem;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* Ajustes para telas menores (até 768px) */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem; /* reduzido para acompanhar o padding */
  }

  .services-grid {
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card img {
    width: 50px;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  .about-holly,
  .services {
    padding: 2rem 0; /* espaçamento moderado */
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* Ajustes para telas muito pequenas (até 480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem; /* reduzido ainda mais */
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-card img {
    width: 45px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .about-holly,
  .services {
    padding: 1.5rem 0; /* reduz ainda mais em telas menores */
  }

  .service-card p {
    font-size: 0.85rem;
  }
}

.testimonials {
  background-color: #fffdf8;
  padding: 4rem 0;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #d6f6ff;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.client-name {
  font-weight: 600;
  color: #1684f9;
  font-size: 0.9rem;
}

.carousel-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
    font-family: 'Corben', sans-serif;
    text-align: center;
  }
  
  .carousel-section h2 {
    color: #1684f9;
    margin-bottom: 1.5rem;
    font-weight: 700;
	
  }
  
  .carousel-container {
    position: relative;
    overflow: hidden;
  }
  
  .carousel-slide {
    display: flex;
    transition: transform 0.4s ease-in-out;
  }
  
  .dog-card {
    min-width: 300px;
    margin: 0 0.8rem;
    background: #d6f6ff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	font-family: 'Corben', serif;
  }
  
  .dog-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 350px;
  }
  
  .dog-card h3 {
    margin: 0.75rem 0 0.3rem;
    color: #1684f9;
	
  }
  
  .dog-card p {
    font-size: 0.9rem;
    color: #4a4a4a;
  }
  .carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1684f9;
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.25rem 0.8rem;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    transition: background 0.3s ease;
  }
  
  .carousel-btn:hover {
    background: #0f62c9;
  }
  
  .prev {
    left: 0.5rem;
  }
  
  .next {
    right: 0.5rem;
  }
  
  /* Ajustes para telas menores (até 768px) */
@media (max-width: 768px) {
  .testimonials {
    padding: 2.5rem 0; /* reduzido */
  }

  .testimonials-grid {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card img {
    width: 50px;
    height: 50px;
  }

  .testimonial-card blockquote {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .client-name {
    font-size: 0.85rem;
  }

  .carousel-section {
    margin: 2rem auto;
    padding: 0 0.8rem;
  }

  .carousel-section h2 {
    margin-bottom: 1rem;
  }

  .dog-card {
    min-width: 250px;
    padding: 0.8rem;
  }

  .dog-card img {
    height: 280px;
  }

  .dog-card p {
    font-size: 0.85rem;
  }
}

/* Ajustes para telas muito pequenas (até 480px) */
@media (max-width: 480px) {
  .testimonials {
    padding: 2rem 0; /* reduz ainda mais */
  }

  .testimonials-grid {
    gap: 1rem;
    margin-top: 1rem;
  }

  .testimonial-card {
    padding: 1.2rem;
  }

  .testimonial-card img {
    width: 45px;
    height: 45px;
  }

  .testimonial-card blockquote {
    font-size: 0.85rem;
  }

  .client-name {
    font-size: 0.8rem;
  }

  .carousel-section {
    margin: 1.5rem auto;
    padding: 0 0.5rem;
  }

  .carousel-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .dog-card {
    min-width: 80vw;
    padding: 0.7rem;
  }

  .dog-card img {
    height: 300px;
  }

  .dog-card p {
    font-size: 0.8rem;
  }
}



.booking-section {
  background-color: #d6f6ff;
  padding: 4rem 0;
  color: #333;
  text-align: center;
}

.booking-intro {
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 600px;
  margin-inline: auto;
}

.booking-form {
  display: grid;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.btn-signup {
  background-color: #1684f9;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  font-family: 'Corben', sans-serif;
}

.btn-signup:hover {
  background-color: #f97316;
}

.contact-info {
  font-size: 0.95rem;
  color: #2e2e2e;
}

.contact-info a {
  color: #1684f9;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .booking-section {
    padding: 2rem 0; /* reduz padding vertical */
  }

  .booking-form {
    margin-bottom: 1.5rem; /* reduz margin-bottom na versão mobile */
  }
}

.site-footer {
  background: linear-gradient(135deg, #d6f6ff, #b0ecf6);
  padding: 4rem 1rem 2rem;
  font-family: 'Corben', sans-serif;
  color: #2e2e2e;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #1684f9;
}

.footer-logo p {
  font-size: 1rem;
  font-style: italic;
  color: #4a4a4a;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1684f9;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #1684f9;
  margin-top: 0.5rem;
  border-radius: 4px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: #2e2e2e;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #f97316;
}

.footer-contact p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-contact a {
  display: inline-block;
  margin-top: 0.2rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom .crafted-by {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
  letter-spacing: 0.3px;
}

.footer-bottom .crafted-by a {
  color: #1684f9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom .crafted-by a:hover {
  color: #f97316;
}
@media (max-width: 600px) {
  .site-footer {
    padding: 2rem 1rem 1.5rem; /* menos padding vertical */
  }

  .footer-content {
    grid-template-columns: 1fr; /* uma coluna só para mobile */
    gap: 1.5rem; /* gap menor */
    text-align: center; /* centraliza texto para melhor visual */
  }

  .footer-logo h3 {
    font-size: 1.5rem; /* um pouco menor */
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .footer-links ul,
  .footer-contact p {
    font-size: 0.9rem; /* texto um pouco menor */
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 0.75rem;
    font-size: 0.8rem;
  }

  .footer-bottom .crafted-by {
    font-size: 0.75rem;
  }
}
