/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header y Navegación */
.header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(94, 43, 140, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo h2 {
    color: #5E2B8C;
    font-size: 2rem;
    font-weight: bold;
}

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

.nav-menu a {
    text-decoration: none;
    color: #5E2B8C;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #EF3C42;
}

.distribuidor-btn {
    background: #FFEB00 !important;
    color: #5E2B8C !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
}

.distribuidor-btn:hover {
    background: #EF3C42 !important;
    color: #FFFFFF !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #5E2B8C;
    margin: 3px 0;
    transition: 0.3s;
}

/* Sección Hero */
.hero {
    background: linear-gradient(135deg, #FFEB00 0%, #4DBCE9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: #5E2B8C;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    color: #5E2B8C;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.btn-primary {
    background: #EF3C42;
    color: #FFFFFF;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #5E2B8C;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #5E2B8C;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid #5E2B8C;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #5E2B8C;
    color: #FFFFFF;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sandal-showcase {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sandal-item {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FFFFFF;
    animation: float 3s ease-in-out infinite;
}

.sandal-item:nth-child(2) {
    animation-delay: -1s;
}

.sandal-item:nth-child(3) {
    animation-delay: -2s;
}

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

/* Sección Tienda */
.tienda {
    padding: 5rem 0;
    background: #FFFFFF;
}

.tienda h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #5E2B8C;
    margin-bottom: 3rem;
}

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

.categoria-btn {
    background: transparent;
    border: 2px solid #FFEB00;
    color: #5E2B8C;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.categoria-btn.active,
.categoria-btn:hover {
    background: #FFEB00;
    color: #5E2B8C;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.producto-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(94, 43, 140, 0.1);
    transition: transform 0.3s ease;
}

.producto-card:hover {
    transform: translateY(-5px);
}

.producto-imagen {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FFFFFF;
}

.producto-card h3 {
    padding: 1rem;
    color: #5E2B8C;
    font-size: 1.3rem;
}

.producto-card p {
    padding: 0 1rem;
    color: #666;
}

.precio {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #EF3C42;
}

.btn-comprar {
    width: 100%;
    background: #4DBCE9;
    color: #FFFFFF;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-comprar:hover {
    background: #EF3C42;
}

/* Sección Nosotros */
.nosotros {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4DBCE9 0%, #FFEB00 100%);
}

.nosotros-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.nosotros h2 {
    font-size: 2.5rem;
    color: #5E2B8C;
    margin-bottom: 2rem;
}

.nosotros p {
    color: #5E2B8C;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.valores {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.valor {
    text-align: center;
    flex: 1;
}

.valor i {
    font-size: 2rem;
    color: #EF3C42;
    margin-bottom: 1rem;
}

.valor h4 {
    color: #5E2B8C;
    margin-bottom: 0.5rem;
}

.nosotros-imagen {
    display: flex;
    justify-content: center;
}

.imagen-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #5E2B8C;
    font-size: 1.2rem;
}

.imagen-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Sección Clientes */
.clientes {
    padding: 5rem 0;
    background: #FFFFFF;
}

.clientes h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #5E2B8C;
    margin-bottom: 3rem;
}

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

.testimonio {
    background: linear-gradient(135deg, #FFEB00, #4DBCE9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: #5E2B8C;
}

.testimonio-avatar {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #5E2B8C;
}

.testimonio p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonio h4 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.estrellas {
    color: #EF3C42;
}

.comunidad {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #EF3C42, #5E2B8C);
    border-radius: 15px;
    color: #FFFFFF;
}

.comunidad h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.redes-sociales {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.redes-sociales a {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    color: #5E2B8C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.redes-sociales a:hover {
    background: #FFEB00;
    transform: translateY(-3px);
}

/* Sección Blog */
.blog {
    padding: 5rem 0;
    background: linear-gradient(135deg, #5E2B8C 0%, #EF3C42 100%);
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-imagen {
    height: 200px;
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    color: #5E2B8C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.post-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.leer-mas {
    color: #EF3C42;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.leer-mas:hover {
    color: #5E2B8C;
}

/* Sección Contacto */
.contacto {
    padding: 5rem 0;
    background: #FFFFFF;
}

.contacto h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #5E2B8C;
    margin-bottom: 3rem;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contacto-info h3 {
    color: #5E2B8C;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contacto-info p {
    color: #666;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #5E2B8C;
}

.info-item i {
    color: #EF3C42;
    font-size: 1.2rem;
}

.contacto-form {
    background: linear-gradient(135deg, #FFEB00, #4DBCE9);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: #FFFFFF;
    color: #5E2B8C;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.btn-enviar {
    width: 100%;
    background: #EF3C42;
    color: #FFFFFF;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-enviar:hover {
    background: #5E2B8C;
}

/* Sección Distribuidores */
.distribuidores {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4DBCE9 0%, #FFEB00 100%);
}

.distribuidores h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #5E2B8C;
    margin-bottom: 1rem;
}

.distribuidores > p {
    text-align: center;
    color: #5E2B8C;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.distribuidor-form {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(94, 43, 140, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #5E2B8C;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
}

.checkbox-label a {
    color: #EF3C42;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #EF3C42, #5E2B8C);
    padding: 3rem 0;
    text-align: center;
    color: #FFFFFF;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #FFEB00;
    color: #5E2B8C;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #5E2B8C;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFEB00;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFEB00;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: #EF3C42;
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: #CCCCCC;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .sandal-showcase {
        margin-top: 2rem;
    }

    .sandal-item {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .nosotros-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .valores {
        flex-direction: column;
        gap: 1rem;
    }

    .contacto-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

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

    .hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .distribuidor-form {
        padding: 2rem 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

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

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

/* Efectos hover adicionales */
.producto-card,
.blog-post,
.testimonio {
    transition: all 0.3s ease;
}

.producto-card:hover,
.blog-post:hover {
    box-shadow: 0 15px 40px rgba(94, 43, 140, 0.2);
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FFEB00;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #EF3C42;
}