:root {
  --primary: #2bbfa9;
  --primary-dark: #229a89;
  --light-bg: #f8f9fa;
  --text: #333;
  --font: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background-color: white;
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

.header {
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;

}
.navbar .container{
  height: 10px !important;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.nav a {
  margin-left: 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: var(--primary);
}

.hero {
  background-image: url('https://unifranz.edu.bo/wp-content/uploads/2025/05/veterinaria-1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 170px 40px;
  min-height: 100vh; /* Ocupa toda la altura del viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero .hero-content {
  background: #22222280;
  padding: 50px;
  border-radius: 12px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background-color: var(--primary-dark) !important;
  color: white!important;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color:var(--primary) !important;
}

.section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-dark);
}

.bg-light {
  background-color: var(--light-bg);
}

/* Grid Utilities */
.grid {
  display: grid;
  gap: 30px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #20bcdb !important;
  color: #f7f7f7 !important;
  border: #20bcdb !important;
  padding: 30px !important;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
.card i{
    font-size: 30px;
}
.card:hover {
  transform: translateY(-5px);
}

.team {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: center;
}

.team-member img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery img.wide {
  grid-column: span 2;
  height: 280px;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img.wide {
    grid-column: span 1;
    height: 220px;
  }
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.contact-info p {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.2rem;
  color: var(--primary-dark);
  background-color: #e7f7f5;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

.map-container {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Contact Form */
.form {
  width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form input,
.form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: none;
}

.form button {
  align-self: flex-start;
}

/* Footer */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}
.footer .container a{
      text-decoration: none;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn img {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form button {
    width: 100%;
  }

  .form{
    width: 100%;
    margin: 0 auto;
  }

  .navbar .container{
  height: auto !important;
  text-align: center;
}
  .hero {
    padding: 100px 20px;
  }
  .hero .hero-content{
        margin-top: -13px;
  }
}
