:root {
    --primary: #DE12A6;
    --secondary: #C215A4;
    --soft: #F47EE1;
    /* Un tono suave para textos secundarios */
    --white: #FFFFFF;
    --accent: #35D07F;
    --bg-dark: #3A0345;
    /* Mantenemos la profundidad */
    --bg-light: #4A125C;
    /* Deep purple */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0A020B;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.card-container {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(150deg, var(--bg-dark) 0%, var(--secondary) 100%);
    overflow: hidden;
    box-shadow: 0 0 50px rgba(157, 28, 143, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Horizontal version adjust via media query */
@media screen and (min-width: 768px) and (orientation: landscape) {
    .card-container {
        max-width: 1080px;
        min-height: 608px;
        height: 608px;
        flex-direction: row;
        border-radius: 20px;
        margin: 20px;
    }

    .card-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        width: 100%;
    }

    .profile-img {
        width: 300px !important;
        margin-bottom: 0 !important;
    }

    .text-section {
        text-align: left;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .brand-name {
        text-align: left;
    }

    .action-buttons {
        max-width: 250px;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}

.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle leaf/floral pattern logic */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(157, 28, 143, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(53, 208, 127, 0.05) 0%, transparent 20%);
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.texture-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 C70 30, 90 50, 100 80 C80 90, 50 100, 30 70 Z" fill="rgba(222, 163, 212, 0.02)"/><path d="M0 50 C20 70, 50 90, 80 100 C70 80, 60 50, 50 30 Z" fill="rgba(222, 163, 212, 0.01)"/></svg>');
    opacity: 0.5;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(157, 28, 143, 0.6);
    border: 3px solid var(--primary);
    background-color: var(--secondary);
}

.brand-name {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--soft);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.services-list {
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 2;
    color: var(--white);
    font-weight: 400;
    background: rgba(42, 11, 41, 0.6);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(222, 163, 212, 0.2);
    backdrop-filter: blur(5px);
}

.services-list span {
    color: var(--soft);
    font-weight: 600;
}

.address-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    font-size: 0.95rem;
    color: var(--white);
}

.address-box i {
    color: var(--primary);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--primary));
}

.action-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.3rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.btn:hover::before {
    left: 150%;
}

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

.btn-instagram:hover {
    box-shadow: 0 0 15px #dc2743;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.btn-whatsapp:hover {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
    transform: translateY(-3px);
}

.btn-tiktok {
    background: #000000;
    border: 1px solid #333;
}

.btn-tiktok:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: #69C9D0;
}

.btn-website {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--white);
    box-shadow: inset 0 0 10px rgba(157, 28, 143, 0.3), 0 0 10px rgba(157, 28, 143, 0.3);
    margin-top: 10px;
}

.btn-website:hover {
    background: rgba(157, 28, 143, 0.2);
    box-shadow: inset 0 0 15px var(--primary), 0 0 20px var(--primary);
    transform: translateY(-3px);
}
