@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --primary: #FF6B35;
  --secondary: #FFD23F;
  --accent: #7B4FE0;
  --green: #4CAF82;
  --blue: #45B7D1;
  --bg: #FEFAF6;
  --text-main: #2D3142;
  --text-muted: #6C757D;
  --white: #FFFFFF;
  --shadow: 0 15px 35px rgba(123, 79, 224, 0.08);
  --shadow-hover: 0 20px 40px rgba(123, 79, 224, 0.15);
  --border-radius: 24px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(123, 79, 224, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(123, 79, 224, 0.4);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

/* INSTAGRAM BUTTON */
.btn-instagram {
  gap: 10px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.btn-instagram i {
  font-size: 1.2rem;
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(220, 39, 67, 0.5);
  opacity: 0.95;
}

/* HEADER & NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--accent);
}

.logo img {
  height: 50px;
  width: auto;
}

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

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  position: relative;
}

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

.nav-links a:hover {
  color: var(--primary);
}

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

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--accent);
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,210,63,0.1) 0%, rgba(123,79,224,0.05) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  z-index: 10;
}

.hero-text h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-text h1 span {
  color: var(--primary);
  display: inline-block;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--border-radius);
  animation: float 6s ease-in-out infinite;
}

.hero-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(to right, var(--secondary), var(--primary));
  top: -50px;
  right: -50px;
  opacity: 0.2;
  filter: blur(40px);
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(to right, var(--accent), var(--blue));
  bottom: -100px;
  left: -100px;
  opacity: 0.15;
  filter: blur(50px);
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.feature-list {
  margin-top: 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.feature-list i {
  color: var(--green);
  font-size: 1.5rem;
}

/* PROGRAMS SECTION */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.program-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid transparent;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(255,107,53,0.05) 0%, rgba(255,255,255,0) 100%);
  transition: var(--transition);
  z-index: 0;
}

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

.program-card:nth-child(1) { border-color: var(--primary); }
.program-card:nth-child(2) { border-color: var(--secondary); }
.program-card:nth-child(3) { border-color: var(--accent); }
.program-card:nth-child(4) { border-color: var(--green); }
.program-card:nth-child(5) { border-color: var(--blue); }
.program-card:nth-child(6) { border-color: var(--primary); }

.program-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.program-card:nth-child(1) .program-icon { background: rgba(255, 107, 53, 0.1); color: var(--primary); }
.program-card:nth-child(2) .program-icon { background: rgba(255, 210, 63, 0.1); color: var(--secondary); }
.program-card:nth-child(3) .program-icon { background: rgba(123, 79, 224, 0.1); color: var(--accent); }
.program-card:nth-child(4) .program-icon { background: rgba(76, 175, 130, 0.1); color: var(--green); }
.program-card:nth-child(5) .program-icon { background: rgba(69, 183, 209, 0.1); color: var(--blue); }
.program-card:nth-child(6) .program-icon { background: rgba(255, 107, 53, 0.1); color: var(--primary); }

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.program-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.age-badge {
  display: inline-block;
  padding: 5px 15px;
  background: var(--bg);
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  position: relative;
  z-index: 1;
}

/* TOUR SECTION (360) */
.tour-section {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 60px;
  margin: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tour-section h2 {
  color: var(--white);
}

.tour-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.tour-btn {
  background: var(--white);
  color: var(--accent);
  font-size: 1.2rem;
  padding: 15px 40px;
}

.tour-btn:hover {
  background: var(--secondary);
  color: var(--text-main);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.tour-bg-shape {
  position: absolute;
  opacity: 0.1;
  font-size: 20rem;
  top: -50px;
  right: -50px;
  transform: rotate(15deg);
}

/* FOOTER */
.footer {
  background: var(--text-main);
  color: var(--white);
  padding: 80px 0 30px;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about h3 {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 5px;
}

.contact-item p, .contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

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

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

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 30px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
