/* PielDiaria - Main Stylesheet */
/* Educational content only. No medical services. No promises of outcomes. */

:root {
  --mint-green: #98D9C2;
  --mint-light: #E8F6F3;
  --mint-dark: #7BC4A8;
  --text-dark: #2D3436;
  --text-muted: #636E72;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray-border: #E0E0E0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
}

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

h1 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

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

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

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;
  display: block;
}

.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar-brand:hover {
  color: var(--mint-dark);
}

.nav-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 100%);
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background-color: var(--gray-light);
}

.section-mint {
  background: linear-gradient(180deg, var(--mint-light) 0%, var(--white) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--mint-green);
  border-radius: 2px;
}

.info-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 20px 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(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.info-card p {
  font-size: 0.95rem;
}

.content-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.content-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.content-block-alt {
  background-color: var(--gray-light);
}

.limits-section {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 50%);
  padding: 4rem 0;
}

.limits-box {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  border-left: 4px solid var(--mint-green);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.limits-box h2 {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-cta {
  display: inline-block;
  background-color: var(--mint-green);
  color: var(--text-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--mint-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
}

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

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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

.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.75rem;
}

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

.footer-disclaimer {
  background-color: rgba(0,0,0,0.2);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.footer-disclaimer p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

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

.page-header h1 {
  margin-bottom: 1rem;
}

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

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content ul, .page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.contact-form {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-border);
}

.form-control {
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--mint-green);
  box-shadow: 0 0 0 3px rgba(152, 217, 194, 0.25);
  outline: none;
}

.form-disclaimer {
  background-color: var(--gray-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.form-disclaimer p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

.contact-info h3 {
  margin-bottom: 1.5rem;
}

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

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thank-you-content {
  max-width: 600px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem;
  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 {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

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

.btn-accept:hover {
  background-color: var(--mint-dark);
  color: var(--text-dark);
}

.btn-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
}

.btn-decline:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
}

@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .content-block {
    padding: 2rem 0;
  }
  
  .info-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .limits-box {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .contact-form, .contact-info {
    padding: 1.5rem;
  }
}
