
:root {
  --primary: #5D62B5;
  --secondary: #F2C94C;
  --accent: #F06060;
  --background: #F9F7F4;
  --clay-bg: #E5DED8;
  --text-primary: #2D3047;
  --text-secondary: #5A5E7A;
  --success: #6FCF97;
  --border: #E0E0E0;
  --shadow: rgba(45, 48, 71, 0.1);
  --clay-shadow-1: rgba(255, 255, 255, 0.5);
  --clay-shadow-2: rgba(174, 174, 192, 0.4);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

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

a:hover {
  color: var(--secondary);
}

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

section {
  padding: 4rem 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}


.clay-card {
  background-color: var(--clay-bg);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 
    8px 8px 16px var(--clay-shadow-2),
    -8px -8px 16px var(--clay-shadow-1);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.clay-button {
  background-color: var(--clay-bg);
  color: var(--text-primary);
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 
    5px 5px 10px var(--clay-shadow-2),
    -5px -5px 10px var(--clay-shadow-1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.clay-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  transition: var(--transition);
  z-index: -1;
  border-radius: 12px;
}

.clay-button:hover {
  color: white;
}

.clay-button:hover::before {
  width: 100%;
}

.clay-button:active {
  transform: scale(0.98);
}

.clay-input {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: var(--transition);
  box-shadow: inset 2px 2px 5px var(--clay-shadow-2);
}

.clay-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(93, 98, 181, 0.2);
}


.top-nav {
  background-color: var(--clay-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 4px 6px var(--shadow);
}

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

.logo {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 600;
  position: relative;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}


.hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: 
    12px 12px 24px var(--clay-shadow-2),
    -12px -12px 24px var(--clay-shadow-1);
}


.features {
  padding: 4rem 0;
}

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

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

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

.feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.programs {
  padding: 4rem 0;
  background-color: var(--background);
}

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

.program-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-image {
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.program-card:hover .program-image img {
  transform: scale(1.05);
}

.program-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.program-content p {
  margin-bottom: 1rem;
  flex: 1;
}

.program-content .clay-button {
  align-self: flex-start;
  margin-top: auto;
}


.about {
  padding: 6rem 0;
}

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

.about-image {
  flex: 1;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
}


.testimonials {
  padding: 4rem 0;
  background-color: var(--clay-bg);
}

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

.testimonial-card {
  background-color: var(--background);
  height: 100%;
}

.testimonial-content {
  position: relative;
  padding-top: 2rem;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.5;
  line-height: 1;
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

.author-info {
  margin-left: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
}


.contact-form {
  padding: 4rem 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.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.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(93, 98, 181, 0.2);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

.submit-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.submit-btn:hover {
  background-color: #4a4e91;
}


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

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

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

.footer-logo img {
  height: 40px;
}

.footer-about p {
  color: #bbb;
  margin-bottom: 1.5rem;
}

.footer-links h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: #bbb;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.contact-info {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: var(--secondary);
}

.contact-info p {
  color: #bbb;
  margin-bottom: 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #bbb;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #ddd;
}

.footer-bottom a:hover {
  color: var(--secondary);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--clay-bg);
  padding: 1.5rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  margin-bottom: 0.5rem;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.cookie-settings {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.cookie-settings:hover {
  background-color: var(--primary);
  color: white;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  display: none;
}

.cookie-modal-content {
  background-color: var(--background);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

.cookie-type {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cookie-type:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.cookie-modal-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.thanks-container {
  text-align: center;
  padding: 5rem 0;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thanks-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thanks-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.back-to-home {
  display: inline-block;
}


.map-container {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}


.z-pattern-section {
  padding: 5rem 0;
}

.z-pattern-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
}

.z-pattern-row:nth-child(even) {
  flex-direction: row-reverse;
}

.z-pattern-content {
  flex: 1;
}

.z-pattern-image {
  flex: 1;
}

.z-pattern-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.z-pattern-content p {
  margin-bottom: 1.5rem;
}


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

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.primary-color {
  color: var(--primary);
}

.secondary-color {
  color: var(--secondary);
}


.iti {
  width: 100%;
}


@media (max-width: 992px) {
  .hero-content,
  .about-content,
  .z-pattern-row {
    flex-direction: column;
    gap: 3rem;
  }
  
  .z-pattern-row:nth-child(even) {
    flex-direction: column;
  }
  
  .hero-text,
  .hero-image,
  .about-text,
  .about-image,
  .z-pattern-content,
  .z-pattern-image {
    flex: none;
    width: 100%;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--clay-bg);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 4px 6px var(--shadow);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-links li {
    margin: 1rem 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .features-grid,
  .programs-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-actions button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .clay-card {
    padding: 1.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}