:root {
  --section-divider-height: 60;
  --section-divider-width: 1920;
  --section-divider-ratio: calc(100% * var(--section-divider-height) / var(--section-divider-width));
  --color-bg-dark: #fff;
  --color-bg-soft: #fff0f5;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .navbar .nav-links a {
        font-size: 0.9rem;
    }
    .navbar{ 
        height: 10vh;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

.has-section-divider {
  position: relative;
  padding-bottom: var(--section-divider-ratio);
  background: #fff;
}

.section-divider {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .has-section-divider {
    padding-bottom: calc(var(--section-divider-ratio) * 0.6);
  }
  
}

/* Navbar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  flex-shrink: 0;
  display: block;
}

.logo img {
    height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}

.nav-links li {
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #ff69b4;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  flex-shrink: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.lang-toggle {
  padding: 8px 12px;
  background: #ff69b4;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  min-width: 45px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle:hover {
  background: #ff1493;
  transform: scale(1.05);
}

.lang-toggle:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }



  .lang-toggle {
    padding: 6px 10px;
    font-size: 0.8rem;
    min-width: 40px;
  }
}

@media (max-width: 640px) {
  .nav-content {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.8rem 0;
  }

  .hamburger {
    display: flex;
  }



  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0;
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-links li {
    border-bottom: 1px solid #f0f0f0;
    white-space: normal;
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    font-size: 0.9rem;
  }

  .nav-links a:hover {
    background: #fff0f5;
  }

  .navbar .container {
    position: relative;
  }

  .lang-toggle {
    padding: 6px 10px;
    font-size: 0.75rem;
    min-width: 38px;
  }
}

@media (max-width: 480px) {
  .nav-content {
    padding: 0.6rem 0;
  }



  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  .nav-links a {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }

  .lang-toggle {
    padding: 5px 8px;
    font-size: 0.7rem;
    min-width: 36px;
  }
}@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }


}

@media (max-width: 640px) {
  .hamburger {
    display: flex;
  }

  .nav-content {
    flex-wrap: wrap;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-links li {
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
  }

  .nav-links a:hover {
    background: #fff0f5;
  }

  .navbar .container {
    position: relative;
  }



  .lang-toggle {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffd1dc 0%, #ffb6c1 50%, #ffc0cb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    padding: 2rem;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
    }

    .hero {
        min-height: 90vh;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 1rem;
    }

    .hero {
        min-height: 80vh;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }

    .hero {
        min-height: 75vh;
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #ff69b4;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ff69b4;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.service-card {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe4e9 100%);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ff69b4;
    margin-bottom: 0.5rem;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff1493;
    margin-bottom: 1rem;
}

.service-card .description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card .price {
        font-size: 1.1rem;
    }

    .service-card .description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        gap: 12px;
    }

    .service-card {
        padding: 20px 12px;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card .price {
        font-size: 1rem;
    }

    .service-card .description {
        font-size: 0.85rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item:hover {
        transform: scale(1.01);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 0 0 350px;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        flex: 0 0 auto;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .about {
        padding: 60px 0;
    }

    .about-image {
        max-width: 250px;
    }

    .about-text h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }

    .about-image {
        max-width: 100%;
        width: 100%;
    }

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

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background:#FFC5D0;
    text-align: center;
}

.contact .section-title {
    color: #fff;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info .phone {
    font-size: 1.5rem;
    color: #fff;
}

.contact-info strong {
    font-weight: 600;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }

    .contact-text {
        font-size: 1.1rem;
    }

    .contact-info .phone {
        font-size: 1.3rem;
    }

    .btn-whatsapp,
    .btn-instagram {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .contact {
        padding: 60px 0;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-whatsapp,
    .btn-instagram {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .contact-text {
        font-size: 1rem;
    }

    .contact-info .phone {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }

    .contact-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

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

    .contact-info .phone {
        font-size: 1rem;
    }

    .btn-whatsapp,
    .btn-instagram {
        padding: 10px 15px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .icon {
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    background: #fff;
    padding: 30px 0;
    text-align: center;
    color: #999;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        flex: 0 0 auto;
        max-width: 300px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-whatsapp,
    .btn-instagram {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .services {
        padding: 60px 0;
    }

    .service-card {
        padding: 30px 20px;
    }

    .gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .contact-text {
        font-size: 1rem;
    }

    .contact-info .phone {
        font-size: 1.2rem;
    }
}
a { 
  text-decoration: none;
  color: inherit;
}