/* PAWTITAS - Estilos Principales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #5a4a3a;
  background: linear-gradient(135deg, #fef7e6 0%, #fdf2e9 50%, #fce4ec 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Elementos decorativos de fondo */
.background-decorations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.paw-print,
.bone,
.heart {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.paw-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.paw-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}
.paw-3 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}
.paw-4 {
  top: 80%;
  right: 10%;
  animation-delay: 3s;
}
.paw-5 {
  top: 40%;
  right: 5%;
  animation-delay: 4s;
}
.bone-1 {
  top: 30%;
  left: 20%;
  animation-delay: 1.5s;
}
.bone-2 {
  top: 70%;
  right: 25%;
  animation-delay: 3.5s;
}
.heart-1 {
  top: 15%;
  left: 50%;
  animation-delay: 2.5s;
}
.heart-2 {
  top: 85%;
  left: 40%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ff8a80;
}

.logo-icon {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8a80 0%, #ffab91 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 138, 128, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 138, 128, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #bf360c;
  border: 2px solid #ffcc02;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ffcc02 0%, #ffc107 100%);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ff8a80;
  border: 2px solid #ff8a80;
}

.btn-outline:hover {
  background: #ff8a80;
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
}

/* Hero Section */
.hero {
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #5a4a3a;
}

.title-line {
  display: block;
}

.title-heart {
  display: block;
  background: linear-gradient(135deg, #ff8a80 0%, #ffab91 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #8d6e63;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Ilustración del perrito */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: floatCard 3s ease-in-out infinite;
  max-width: 300px;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.dog-illustration {
  margin-bottom: 1rem;
}

.dog-face {
  position: relative;
  margin-bottom: 1rem;
}

.dog-ears {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: -1rem;
}

.ear {
  width: 30px;
  height: 40px;
  background: #d7ccc8;
  border-radius: 50% 50% 0 0;
  position: relative;
}

.ear::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 25px;
  background: #ffab91;
  border-radius: 50% 50% 0 0;
}

.dog-head {
  width: 80px;
  height: 80px;
  background: #d7ccc8;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}

.dog-eyes {
  display: flex;
  justify-content: space-between;
  padding: 20px 15px 0;
}

.eye {
  width: 8px;
  height: 8px;
  background: #3e2723;
  border-radius: 50%;
}

.dog-nose {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #3e2723;
  border-radius: 50%;
}

.dog-mouth {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  border: 2px solid #3e2723;
  border-top: none;
  border-radius: 0 0 20px 20px;
}

.dog-body {
  width: 60px;
  height: 40px;
  background: #d7ccc8;
  border-radius: 30px;
  margin: 0 auto;
}

.card-text h3 {
  color: #ff8a80;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card-text p {
  color: #8d6e63;
  font-size: 0.9rem;
}

/* Secciones */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #5a4a3a;
  margin-bottom: 3rem;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  color: #ff8a80;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about-card p {
  color: #8d6e63;
  line-height: 1.6;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff8a80;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #8d6e63;
  font-weight: 500;
}

/* Featured Dogs Section */
.featured-dogs {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.3);
}

.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.dog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.dog-card:hover {
  transform: translateY(-5px);
}

.dog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dog-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: #f5f5f5;
  color: #ccc;
}

.dog-info {
  padding: 1.5rem;
}

.dog-info h3 {
  color: #ff8a80;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.dog-breed,
.dog-age {
  color: #8d6e63;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.dog-personality {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.text-center {
  text-align: center;
}

/* CTA Section */
.cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffab91 0%, #ff8a80 100%);
  color: white;
}

.cta-content {
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: white;
  color: #ff8a80;
}

.cta .btn-outline {
  border-color: white;
  color: white;
}

.cta .btn-outline:hover {
  background: white;
  color: #ff8a80;
}

/* Footer */
.footer {
  background: #5a4a3a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo .logo {
  color: #ffab91;
  margin-bottom: 1rem;
}

.footer-logo p {
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.link-group h4 {
  color: #ffab91;
  margin-bottom: 1rem;
}

.link-group a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.link-group a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* Formularios */
.form-container {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #5a4a3a;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff8a80;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .navbar {
    padding: 0 1rem;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .dogs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 1rem 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    margin: 1rem;
    padding: 1.5rem;
  }
}
