/* ============================================
   ESTILOS GENERALES Y VARIABLES
   ============================================ */

:root {
    --primary-color: #FF6B9D;
    --secondary-color: #4A90E2;
    --accent-color: #F5A623;
    --dark-gray: #2C3E50;
    --light-gray: #ECF0F1;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    margin-left: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.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);
}

.nav-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}


/* ============================================
   BOTONES
   ============================================ */

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #E55A8B;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    width: 100%;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECCIÓN HERO
   ============================================ */

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(74, 144, 226, 0.1));
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 150px;
    box-shadow: var(--shadow);
}

.hero-logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ============================================
   CARACTERÍSTICAS PRINCIPALES
   ============================================ */

.features {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

/* ============================================
   SECCIÓN DE SERVICIOS
   ============================================ */

.section-title {
    text-align: center;
    font-size: 40px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border: 2px solid #f0f0f0;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* ============================================
   CÓMO FUNCIONA
   ============================================ */

.how-it-works {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.step p {
    color: #666;
    font-size: 14px;
}

.step-arrow {
    flex: 0 0 40px;
    text-align: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

/* ============================================
   NUESTRAS NIÑERAS
   ============================================ */

.our-sitters {
    padding: 80px 0;
}

.sitters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.sitter-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.sitter-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.sitter-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sitter-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder-sitter {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
}

.sitter-info {
    padding: 25px;
}

.sitter-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating i {
    color: #FFD700;
    font-size: 14px;
}

.rating-text {
    color: #999;
    font-size: 12px;
    margin-left: 5px;
}

.experience {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.sitter-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    background-color: #f0f0f0;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.sitter-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.sitter-details {
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.sitter-details p {
    color: #999;
    font-size: 13px;
    margin-bottom: 5px;
}

.sitter-details i {
    color: var(--primary-color);
    margin-right: 8px;
}

.view-all-sitters {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   TESTIMONIOS
   ============================================ */

.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.stars i {
    font-size: 16px;
    margin-right: 5px;
}

.testimonial-text {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.author-info h4 {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.author-info p {
    color: #999;
    font-size: 12px;
}

/* ============================================
   ESTADÍSTICAS
   ============================================ */

.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 18px;
    opacity: 0.9;
}

/* ============================================
   PRECIOS
   ============================================ */

.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);
}

.badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 10px;
    color: var(--dark-gray);
}

.price {
    margin: 30px 0;
    font-size: 36px;
}

.currency {
    font-size: 28px;
    color: var(--primary-color);
}

.amount {
    font-weight: bold;
    color: var(--primary-color);
}

.period {
    color: #999;
    font-size: 16px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 14px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.features-list i.fa-times {
    color: #ccc;
}

/* ============================================
   SEGURIDAD Y CONFIANZA
   ============================================ */

.trust {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.trust-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.trust-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 12px 0;
    color: #666;
    font-size: 15px;
}

.trust-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
}

.image-placeholder-trust {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 120px;
}

/* ============================================
   CTA FINAL
   ============================================ */

.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.final-cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.final-cta .btn-primary:hover {
    background-color: #f0f0f0;
}

.final-cta .btn-secondary {
    border-color: white;
    color: white;
}

.final-cta .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-section p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: #999;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero .container,
    .trust-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .services-grid,
    .sitters-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: flex;
    }

    .navbar-wrapper {
        flex-wrap: wrap;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        list-style: none;
        padding: 15px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 10px 20px;
    }

    .nav-links a {
        display: block;
    }

    .nav-cta {
        flex-direction: row;
        gap: 10px;
    }

    .nav-cta button {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .services-grid,
    .sitters-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-cta {
        flex-direction: column;
        gap: 10px;
    }

    .nav-cta button {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin-bottom: 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 14px;
    }

    .image-placeholder {
        height: 250px;
        font-size: 80px;
    }

    .image-placeholder-trust {
        height: 250px;
        font-size: 70px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
