/* Restablecer y configuraciones básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e91e63;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e91e63;
    transition: width 0.3s ease;
}

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

/* Menú Móvil */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #eee;
    padding: 1rem 0;
}

.mobile-link {
    display: block;
    padding: 0.5rem 20px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: background 0.3s ease;
}

.mobile-link:hover {
    background: #f8f9fa;
    color: #e91e63;
}

/* Sección Principal (Hero) */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #fce4ec 0%, #e3f2fd 50%, #fff9c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #333;
}

.highlight {
    color: #e91e63;
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botones */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, #2196f3, #64b5f6);
    color: white;
}

.btn-product {
    width: 100%;
    margin-top: 1rem;
}

.btn-pink {
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    color: white;
}

.btn-blue {
    background: linear-gradient(45deg, #2196f3, #64b5f6);
    color: white;
}

.btn-yellow {
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    color: #333;
}

.btn-white {
    background: white;
    color: #e91e63;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #e91e63;
}

/* Elementos flotantes */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.float-1 {
    width: 32px;
    height: 32px;
    background: #e91e63;
    top: 15%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.float-2 {
    width: 24px;
    height: 24px;
    background: #2196f3;
    top: 25%;
    right: 15%;
    animation: float 4s ease-in-out infinite 1s;
}

.float-3 {
    width: 40px;
    height: 40px;
    background: #ffc107;
    bottom: 25%;
    left: 15%;
    animation: float 3.5s ease-in-out infinite 0.5s;
}

.float-4 {
    width: 16px;
    height: 16px;
    background: #4caf50;
    bottom: 15%;
    right: 10%;
    animation: float 4.5s ease-in-out infinite 2s;
}

/* Secciones */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sección de Productos */
.products {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 4px solid #e91e63;
}

.product-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e91e63;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.product-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    color: #e91e63;
}

.price-current.blue {
    color: #2196f3;
}

.price-current.yellow {
    color: #ff9800;
}

.price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Sección de Características */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #fce4ec 0%, #fff3e0 100%);
}

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

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon.pink {
    background: rgba(233, 30, 99, 0.1);
}

.feature-icon.blue {
    background: rgba(33, 150, 243, 0.1);
}

.feature-icon.yellow {
    background: rgba(255, 193, 7, 0.1);
}

.feature-icon.green {
    background: rgba(76, 175, 80, 0.1);
}

.feature-icon.purple {
    background: rgba(156, 39, 176, 0.1);
}

.feature-icon.red {
    background: rgba(244, 67, 54, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Sección de Contacto */
.contact {
    padding: 80px 0;
    background: #e7405d;
    color: white;
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* Pie de Página */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-tagline {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
}

/* Animaciones */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsividad */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo-img {
        width: 150px;
        height: 150px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}



/* Sección de Dibujos de Ejemplo */
.sample-drawings {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.sample-drawing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sample-drawing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.1), rgba(255, 107, 157, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.sample-drawing-card:hover::before {
    opacity: 1;
}

.sample-drawing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sample-drawing-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.sample-drawing-card:hover .sample-drawing-img {
    transform: scale(1.05);
}

.sample-drawing-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.sample-drawing-card::after {
    content: '🔍 Clique para ampliar';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(233, 30, 99, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.sample-drawing-card:hover::after {
    opacity: 1;
}

/* Estilos del Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-button {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.close-button:hover {
    color: #e91e63;
}

#modalImage {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#modalTitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

#downloadButton {
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

#downloadButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Animaciones del Modal */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividad para Dibujos de Ejemplo */
@media (max-width: 768px) {
    .sample-drawings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sample-drawing-card {
        padding: 1.5rem;
    }
    
    .sample-drawing-img {
        height: 200px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    #modalImage {
        max-height: 300px;
    }
}







/* Nova Seção: O que vem no produto */
.product-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #fce4ec 0%, #e3f2fd 100%);
    text-align: center;
}

.product-content .section-title {
    margin-bottom: 3rem;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.text-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.image-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.product-content-text {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-content-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.product-content-img:hover {
    transform: scale(1.02);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .text-content,
    .image-content {
        text-align: center;
    }

    .product-content-text {
        font-size: 1.2rem;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}


