/* BellezaDiaria - Main Stylesheet */
/* Mobile-first responsive design */

:root {
  --mint-green: #98D4BB;
  --mint-light: #E8F5F0;
  --mint-dark: #6BB89D;
  --text-dark: #2D3436;
  --text-muted: #636E72;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray-border: #E0E0E0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  color: var(--mint-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--mint-light) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mint-dark) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--mint-dark) !important;
}

.hero-section {
  background: linear-gradient(180deg, var(--mint-light) 0%, var(--white) 100%);
  padding: 3rem 0;
  text-align: center;
}

.hero-section h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-section {
  padding: 3rem 0;
}

.content-section:nth-child(even) {
  background-color: var(--gray-light);
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--mint-green), var(--mint-dark));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.info-card h3 {
  color: var(--mint-dark);
  margin-bottom: 0.75rem;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.image-grid.three-cols img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.limits-section {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 100%);
  padding: 3rem 0;
  border-top: 3px solid var(--mint-green);
  border-bottom: 3px solid var(--mint-green);
}

.limits-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.limits-box h2 {
  color: var(--mint-dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

.limits-box ul {
  list-style: none;
  padding: 0;
}

.limits-box li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.limits-box li::before {
  content: '•';
  color: var(--mint-dark);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cta-section {
  background: var(--mint-light);
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--mint-green) 0%, var(--mint-dark) 100%);
  color: var(--white) !important;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 184, 157, 0.4);
  color: var(--white) !important;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer h5 {
  color: var(--mint-green);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--mint-green);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

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

.page-header {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 100%);
  padding: 3rem 0;
  text-align: center;
}

.page-content {
  padding: 3rem 0;
}

.page-content h2 {
  color: var(--mint-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content ul, .page-content ol {
  color: var(--text-muted);
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 500px;
  margin: 0 auto;
}

.contact-form label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form input[type="email"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input[type="email"]:focus {
  outline: none;
  border-color: var(--mint-green);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--gray-light);
  border-radius: 6px;
  text-align: center;
}

.contact-info {
  background: var(--mint-light);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.contact-info h3 {
  color: var(--mint-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.thank-you-section {
  text-align: center;
  padding: 4rem 0;
}

.thank-you-section h1 {
  color: var(--mint-dark);
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-banner .btn-accept {
  background: var(--mint-green);
  color: var(--text-dark);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

@media (min-width: 576px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .content-section {
    padding: 4rem 0;
  }
  
  .image-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .info-card {
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 2.75rem;
  }
  
  .hero-section {
    padding: 5rem 0;
  }
  
  .content-section {
    padding: 5rem 0;
  }
}
