/* Base Variables */
:root {
  --primary: #007bff;
  --primary-dark: #0056b3;
  --primary-light: #e6f2ff;
  --secondary: #6c757d;
  --accent: #ffc107;
  --success: #28a745;
  --danger: #dc3545;
  --dark: #212529;
  --text: #333;
  --text-light: #666;
  --text-lighter: #888;
  --bg-light: #f8f9fa;
  --bg-dark: #e9ecef;
  --bg-card: #fff;
  --border: #dee2e6;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --header-height: 70px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --content-padding: 20px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover, a:focus {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-text {
  background: transparent;
  color: var(--primary);
  padding: 0.5rem 0;
  text-decoration: underline;
}

.btn-text:hover, .btn-text:focus {
  color: var(--primary-dark);
}

/* Header */
.site-header {
  background-color: var(--bg-card);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
}

.logo-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav-toggle-icon, 
.nav-toggle-icon::before, 
.nav-toggle-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  position: absolute;
  transition: transform 0.3s ease;
}

.nav-toggle-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle-icon::before, 
.nav-toggle-icon::after {
  content: '';
  left: 0;
}

.nav-toggle-icon::before {
  top: -8px;
}

.nav-toggle-icon::after {
  top: 8px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.primary-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-item a {
  color: var(--text);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition);
}

.nav-item a:hover::after,
.nav-item a.active::after {
  width: 100%;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  color: white;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a:hover {
  color: white;
}

.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs .current {
  color: white;
  font-weight: 600;
}

/* Content Section */
.content-section {
  padding: 3rem 0 5rem;
}

.content-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
}

.content-cards {
  display: grid;
  gap: 2rem;
}

.content-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  transition: transform var(--transition), box-shadow var(--transition);
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 2rem;
}

.card-body {
  padding: 2rem;
  flex-grow: 1;
}

.card-title {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.card-content {
  color: var(--text);
}

.feature-list {
  margin: 1.5rem 0;
}

.feature-item {
  margin-bottom: 1.5rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-title {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.check-list {
  margin: 1.5rem 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
}

.notice-box {
  background-color: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
}

.update-date {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: right;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background-color: var(--dark);
  color: white;
}

.footer-main {
  padding: 4rem 0 2rem;
}

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

.footer-heading {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links li, .footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a, .footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.footer-links a:hover, .footer-contact a:hover {
  color: white;
}

.footer-links a.active {
  color: var(--primary);
}

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

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.partners-list li {
  opacity: 0.7;
  transition: opacity var(--transition);
}

.partners-list li:hover {
  opacity: 1;
}

.partners-list img {
  height: 40px;
  width: auto;
}

.footer-bottom {
  padding: 2rem 0;
}

.disclaimer {
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.disclaimer p {
  margin-bottom: 1rem;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

/* Age Verification Dialog */
.age-verification {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
}

.age-dialog {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.dialog-title {
  color: var(--dark);
  margin-bottom: 1rem;
}

.dialog-text {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Cookie Consent Dialog */
.cookie-consent {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  z-index: 9999;
  padding: 1.5rem;
}

.consent-dialog {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
}

.consent-main {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.consent-text {
  flex: 1 1 300px;
}

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

.consent-text p {
  color: var(--text-light);
  margin-bottom: 0;
}

.consent-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.consent-settings {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: none;
}

.cookie-option {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cookie-option:last-of-type {
  margin-bottom: 0;
}

.option-details {
  flex-grow: 1;
}

.option-details label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.option-details small {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--bg-dark);
  color: var(--text);
  border-radius: 1rem;
}

.settings-actions {
  margin-top: 1.5rem;
  flex-direction: row;
}

.settings-info {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

.settings-info a {
  color: var(--primary);
  text-decoration: none;
}

.settings-info a:hover {
  text-decoration: underline;
}

.cookie-manager {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 100;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero.png');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-description {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-features {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

.hero-feature i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-feature h3 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.hero-feature p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--bg-dark);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-disclaimer {
  margin-top: 2rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  font-style: italic;
  color: var(--text-light);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--bg-card);
  text-align: center;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.service-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Top Casas Section */
.top-casas-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.top-casas-disclaimer {
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
  color: var(--text-light);
}

.operator-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  overflow: hidden;
  display: flex;
  transition: box-shadow var(--transition);
}

.operator-card:hover {
  box-shadow: var(--shadow-lg);
}

.operator-info {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.operator-logo {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: var(--radius);
}

.operator-rating {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.operator-rating span {
  color: var(--text);
  font-weight: 600;
  margin-left: 0.5rem;
}

.operator-features {
  margin-bottom: 1.5rem;
}

.operator-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.operator-features i {
  color: var(--primary);
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.operator-details {
  flex: 1;
  background-color: var(--bg-light);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.detail-block {
  background-color: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.detail-block h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.visit-site-btn {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.small-disclaimer {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* How It Works Section */
.how-works-section {
  padding: 5rem 0;
  background-color: var(--bg-dark);
}

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

.step-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

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

.step-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform var(--transition);
}

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

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.review-author h4 {
  margin-bottom: 0.25rem;
}

.review-rating {
  color: var(--accent);
  text-align: right;
}

.review-date {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--bg-dark);
}

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

.contact-form {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 1rem;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-card);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 1rem;
}

.faq-answer[aria-hidden="false"] {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* Payment Methods */
.payment-methods {
  position: relative;
}

.toggle-methods-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem;
  cursor: pointer;
  transition: background-color var(--transition);
}

.toggle-methods-btn:hover {
  background-color: var(--primary-dark);
}

.methods-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-top: 1rem;
}

.methods-list[aria-hidden="false"] {
  max-height: 200px;
}

.methods-list ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.methods-list li {
  margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  :root {
    --content-padding: 15px;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .card-icon {
    width: 80px;
    font-size: 1.75rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .about-container {
    flex-direction: column;
  }
  
  .about-content,
  .about-image {
    flex: auto;
    width: 100%;
  }
  
  .operator-card {
    flex-direction: column;
  }
  
  .operator-details {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-card);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
  }
  
  .primary-nav.active {
    transform: translateX(0);
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-item a {
    font-size: 1.25rem;
  }
  
  .content-card {
    flex-direction: column;
  }
  
  .card-icon {
    width: 100%;
    height: 80px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .partners-list {
    gap: 1.5rem;
  }
  
  .partners-list img {
    height: 30px;
  }
  
  .dialog-actions {
    flex-direction: column;
  }
  
  .dialog-actions .btn {
    width: 100%;
  }
  
  .consent-main {
    flex-direction: column;
    gap: 1rem;
  }
  
  .consent-actions {
    flex-direction: row;
    width: 100%;
  }
  
  .consent-actions .btn {
    flex: 1;
  }
  
  .settings-actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  :root {
    --content-padding: 10px;
  }
  
  .page-header {
    padding: 2rem 0;
  }
  
  .page-title {
    font-size: 1.75rem;
  }
  
  .content-section {
    padding: 2rem 0 3rem;
  }
  
  .card-body {
    padding: 1.25rem;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .services-section,
  .top-casas-section,
  .how-works-section,
  .reviews-section,
  .contact-section,
  .faq-section {
    padding: 3rem 0;
  }
  
  .footer-main {
    padding: 3rem 0 1.5rem;
  }
  
  .age-dialog {
    padding: 1.5rem;
  }
}