/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #000;
    color: #fff;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo span {
    font-weight: bold;
}

.logo strong {
    color: #3b82f6;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    padding: 10px 18px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    padding: 10px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* HERO */
.hero {
    height: 100vh;
    background: url('assets/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.95));
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
}

/* BADGE */
.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    margin-bottom: 20px;
    font-size: 14px;
}

/* TITLES */
.hero h1 {
    font-size: 60px;
    line-height: 1.2;
}

.hero h1 span {
    color: #3b82f6;
}

.hero p {
    margin-top: 20px;
    color: #ccc;
    max-width: 600px;
    margin-inline: auto;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* STATS */
.stats {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stats div {
    flex: 1;
    min-width: 120px;
}

.stats h3 {
    color: #3b82f6;
    font-size: 28px;
}

.stats span {
    color: #aaa;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 40px;
    }
    .nav-links {
        display: none;
    }
    .stats {
        gap: 20px;
    }
    @media (max-width: 500px) {
        .hero h1 {
            font-size: 32px;
        }
        .hero-buttons {
            flex-direction: column;
        }
    }
}

/* ABOUT SECTION */
.about {
    padding: 100px 0;
    background: #020617;
}

/* HEADER */
.about-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.about-header .badge {
    margin-bottom: 20px;
}

.about-header h2 {
    font-size: 42px;
    line-height: 1.3;
}

.about-header h2 span {
    color: #3b82f6;
}

.about-header p {
    margin-top: 15px;
    color: #94a3b8;
}

/* CONTENT */
.about-content {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-image img:hover {
    transform: scale(1.03);
    transition: 0.4s;
}

/* TEXT */
.about-text {
    flex: 1;
    color: #cbd5f5;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* TAGS */
.about-tags {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-tags span {
    padding: 10px 15px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    font-size: 14px;
    transition: 0.3s;
}

.about-tags span:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
    }
    .about-header h2 {
        font-size: 32px;
    }
}

/* ABOUT CARDS */
.about-cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.card {
    background: linear-gradient(145deg, #050b18, #020617);
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

/* HOVER EFECTO PRO */
.card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 60%);
    top: -50px;
    left: -50px;
    opacity: 0;
    transition: 0.5s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

/* ICON */
.icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
    margin-bottom: 20px;
}

/* TEXT */
.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-cards {
        grid-template-columns: 1fr;
    }
}

/* BENEFITS SECTION */
.benefits {
    padding: 100px 0;
    background: linear-gradient(to bottom, #020617, #050b18);
}

/* HEADER */
.benefits-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.benefits-header h2 {
    font-size: 42px;
    margin: 15px 0;
}

.benefits-header h2 span {
    color: #3b82f6;
}

.benefits-header p {
    color: #94a3b8;
}

/* GRID */
.benefits-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD GRANDE */
.benefit-card {
    background: linear-gradient(145deg, #050b18, #020617);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.1);
}

/* ICON */
.benefit-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 26px;
    margin-bottom: 20px;
}

/* TEXT */
.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* MINI BENEFITS */
.mini-benefits {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mini-card {
    padding: 20px;
    text-align: center;
    align-items: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    color: #cbd5f5;
    font-size: 14px;
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefits-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .mini-benefits {
        grid-template-columns: 1fr;
    }
}

/* GALLERY */
.gallery {
    padding: 100px 0;
    background: #020617;
}

/* HEADER */
.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.gallery-header h2 {
    font-size: 42px;
    margin: 15px 0;
}

.gallery-header span {
    color: #3b82f6;
}

.gallery-header p {
    color: #94a3b8;
}

/* GRID */
.gallery-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

/* IMAGE */
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.gallery-card .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.gallery-card span {
    color: #3b82f6;
    font-size: 14px;
}

.gallery-card h3 {
    margin-top: 5px;
    font-size: 18px;
}

/* HOVER */
.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .overlay {
    background: linear-gradient(to top, rgba(0,0,0,1), transparent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-header h2 {
        font-size: 32px;
    }
}

/* CTA GALERÍA */
.gallery-cta {
    margin-top: 80px;
    text-align: center;
}

.gallery-cta p {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* BOTÓN MÁS GRANDE */
.gallery-cta .btn-primary {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* FORM SECTION */
.form-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #020617, #050b18);
}

/* CONTAINER */
.form-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 42px;
    margin: 20px 0;
}

.form-info h2 span {
    color: #3b82f6;
}

.form-info p {
    color: #94a3b8;
    margin-bottom: 30px;
}

/* LIST */
.form-info ul {
    list-style: none;
}

.form-info li {
    margin-bottom: 20px;
}

.form-info li strong {
    display: block;
}

.form-info li span {
    color: #94a3b8;
    font-size: 14px;
}

/* FORM BOX */
.form-box {
    flex: 1;
    background: linear-gradient(145deg, #050b18, #020617);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

/* INPUTS */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-size: 14px;
}

form input,
form select {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* BOTÓN */
form button {
    margin-top: 10px;
    padding: 14px;
    border: none;
    cursor: pointer;
}

/* SMALL */
form small {
    margin-top: 15px;
    color: #64748b;
    font-size: 12px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .form-container {
        flex-direction: column;
    }
    .form-info h2 {
        font-size: 32px;
    }
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background: #020617;
}

/* HEADER */
.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.testimonials-header h2 {
    font-size: 42px;
    margin: 15px 0;
}

.testimonials-header span {
    color: #3b82f6;
}

.testimonials-header p {
    color: #94a3b8;
}

/* GRID */
.testimonials-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.testimonial-card {
    background: linear-gradient(145deg, #050b18, #020617);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
}

/* STARS */
.stars {
    color: #3b82f6;
    margin-bottom: 15px;
}

/* TEXT */
.testimonial-card p {
    color: #cbd5f5;
    font-size: 14px;
    line-height: 1.6;
}

/* USER */
.user {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user span {
    color: #94a3b8;
    font-size: 12px;
}

/* STATS */
.testimonial-stats {
    margin-top: 60px;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(145deg, #050b18, #020617);
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.testimonial-stats h3 {
    font-size: 32px;
    color: #3b82f6;
}

.testimonial-stats span {
    color: #94a3b8;
}

/* DIVIDER */
.divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-stats {
        flex-direction: column;
        gap: 20px;
    }
    .divider {
        display: none;
    }
    .testimonials-header h2 {
        font-size: 32px;
    }
}

/* CONTACT */
.contact {
  padding: 100px 20px;
  background: #0b0f19;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
}

.section-header span {
  color: #3b82f6;
}

.section-header p {
  color: #9ca3af;
  margin-top: 10px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* COLUMNAS */
.contact-left,
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 25px;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59,130,246,0.5);
}

/* DESTACADO */
.contact-card.highlight {
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(0,0,0,0.3));
}

/* ICONOS */
.icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  border-radius: 10px;
  margin-bottom: 15px;
}

.icon.big {
  width: 60px;
  height: 60px;
  font-size: 22px;
}

/* TEXTOS */
.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-card p,
.contact-card li,
.contact-card span {
  color: #9ca3af;
  font-size: 14px;
}

/* LISTAS */
.contact-card ul {
  padding-left: 18px;
  margin: 10px 0;
}

.contact-card li {
  margin-bottom: 6px;
}

/* LINKS */
.contact-links a {
  display: block;
  color: #3b82f6;
  margin-top: 5px;
  text-decoration: none;
}

/* SOCIAL */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.social-grid a {
  background: rgba(255,255,255,0.05);
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.social-grid a:hover {
  background: rgba(59,130,246,0.2);
}

/* HORARIOS */
.schedule div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.schedule strong {
  color: #3b82f6;
}

.closed {
  color: #ef4444;
}

/* BOTÓN */
.btn-primary {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  border-radius: 10px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer {
  background: #05070d;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 20px 40px;
}

/* COLUMNAS */
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col p,
.footer-col a {
  color: #9ca3af;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 35px;
}

.footer-logo span {
  color: #3b82f6;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a:hover {
  color: #3b82f6;
}

/* REDES */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: rgba(59,130,246,0.2);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9ca3af;
}

.footer-bottom span {
  color: #3b82f6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}