/* Variables de Colores basadas en el logo Freisys Style */
:root {
    --primary-pink: #FFB6C1;
    --light-pink: #FFC0CB;
    --dark-pink: #FF69B4;
    --white: #FFFFFF;
    --dark-gray: #2C2C2C;
    --light-gray: #F5F5F5;
    --medium-gray: #666666;
    --border-gray: #E0E0E0;
}

/* Reset y Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografía */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--dark-pink);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Sección Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fef5f8 0%, #fff9fb 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Elementos decorativos de fondo */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -150px;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 192, 203, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: 10%;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 182, 193, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.hero h1 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-image {
    position: relative;
    width: 500px;
    height: 500px;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 50% 0 50%;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-pink) 100%);
    border-radius: 50% 50% 0 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.4);
    z-index: 0;
    top: 20px;
    left: 20px;
}

/* Círculos flotantes decorativos */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
}

.circle-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(255, 192, 203, 0.2));
    top: 15%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.25), rgba(255, 182, 193, 0.15));
    top: 60%;
    left: 8%;
    animation: float 9s ease-in-out infinite 1s;
    box-shadow: 0 8px 25px rgba(255, 192, 203, 0.25);
}

.circle-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(255, 182, 193, 0.2));
    top: 25%;
    right: 20%;
    animation: float 8s ease-in-out infinite 2s;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.25);
}

/* Botones */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--dark-pink), var(--primary-pink));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

/* Sección de Características */
.features {
    padding: 80px 20px;
    background: var(--white);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--medium-gray);
}

/* Sección de Productos */
.productos {
    padding: 80px 20px;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--dark-gray);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Coming Soon Message */
.coming-soon-message {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-message h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.coming-soon-message p {
    color: var(--medium-gray);
    font-size: 1.2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    background: var(--light-gray);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    padding: 12px 30px;
    background: var(--white);
    color: var(--dark-gray);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-price {
    font-size: 1.5rem;
    color: var(--dark-pink);
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--dark-pink), var(--primary-pink));
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

/* Sección Sobre Nosotros */
.about {
    padding: 80px 20px;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 10px 0;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    width: 100%;
    height: 500px;
}

.about-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 0 50% 50%;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--primary-pink) 100%);
    border-radius: 50% 0 50% 50%;
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.4);
    z-index: 0;
    top: -20px;
    right: -20px;
}

/* Newsletter */
.newsletter {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-pink) 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.newsletter-form button {
    padding: 15px 40px;
    background: var(--dark-gray);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--white);
    color: var(--dark-pink);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-pink);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        max-width: 100%;
        padding: 30px 20px;
    }

    .hero-image {
        width: 300px;
        height: 300px;
        margin-top: 40px;
    }

    /* Ajustar círculos decorativos en tablets */
    .circle-1 {
        width: 60px;
        height: 60px;
    }

    .circle-2 {
        width: 90px;
        height: 90px;
    }

    .circle-3 {
        width: 50px;
        height: 50px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .logo-icon {
        height: 40px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    h1 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        max-width: 100%;
    }

    /* Ajustar círculos decorativos en móviles */
    .floating-circle {
        opacity: 0.4;
    }

    .circle-1 {
        width: 40px;
        height: 40px;
        top: 10%;
        left: 5%;
    }

    .circle-2 {
        width: 60px;
        height: 60px;
        top: 70%;
        left: 5%;
    }

    .circle-3 {
        display: none; /* Ocultar en móviles pequeños */
    }

    .hero::before {
        width: 400px;
        height: 400px;
    }

    .hero::after {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 80px 20px 40px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}
