/* ===== VARIABLES ===== */
:root {
    --primary-color: #3ac3ea;
    --accent-color: #de5366;
    --dark-bg: #b0bcbd;
    --light-bg: #e1eced;
    --text-dark: #353737;
    --text-darker: #252525;
    --text-light: #ffffff;
    --text-gray: #3d3d3d;
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Roboto", sans-serif;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 30px;
    --shadow-default: 1px 17px 32px rgba(0, 0, 0, 0.15);
    --transition-default: all 0.3s ease;
}

/* ===== LAYOUT PRINCIPAL ===== */
.laser-page {
    width: 100%;
    background: linear-gradient(90deg, var(--light-bg) 50%, var(--dark-bg) 50%);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ===== CONTENIDO PRINCIPAL CON GRID ===== */
.content-grid {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    flex: 1;
    gap: 40px;
    position: relative;
    min-height: 100vh;

    background-image: url("../img/tatuaje.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

/* Columna izquierda */
.content-left {
    margin-top: 10%;
    padding-left: 10%;
    padding-right: 40px;
    position: relative;
    padding-top: 10%;
}

/* Columna vertical */
.content-vertical {
    margin-top: 80%;
    padding-left: 10%;
    padding-right: 40px;
    position: relative;
    padding-top: 10%;
}

.vertical-text {
    position: absolute;
    bottom: 0%;
    transform: rotate(-90deg);
    transform-origin: left top;
    color: var(--text-light);
    font-size: 49.5px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.49px;
    white-space: nowrap;
    z-index: 5;
}

.vertical-line {
    position: absolute;
    left: 80%;
    width: 3px;
    height: 35%;
    background: rgba(255, 255, 255);
    z-index: 5;
}

/* Títulos y textos principales */
.service-tag {
    font-size: 16.67px;
    font-weight: 600;
    color: var(--text-darker);
    margin-bottom: var(--spacing-lg);
    margin-top: 40px;
}

h1 {
    font-size: 54.17px;
    font-weight: 500;
    color: var(--text-darker);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-primary);
}

.description {
    font-size: 16.67px;
    font-family: var(--font-secondary);
    font-weight: 300;
    line-height: 1.875;
    color: var(--text-darker);
    max-width: 600px;
    margin-bottom: var(--spacing-xxl);
}

/* Grid de características */
.features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.feature-section h2 {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.feature-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: 1px;
    background: var(--text-light);
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.two-column-list ul {
    color: #252525;
}

.list-with-dots {
    list-style: none;
}

.list-with-dots li {
    font-size: 16.67px;
    font-family: var(--font-secondary);
    font-weight: 300;
    line-height: 2.25;
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-with-dots li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    display: inline-block;
    flex-shrink: 0;
}

/* Columna derecha */
.content-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 60px;
}

/* Botones de acción */
.action-cards {
    position: absolute;
    bottom: 100px;
    right: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 60px;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--text-light);
    border: none;
    cursor: pointer;
    transition: var(--transition-default);
    width: 100%;
    border-radius: 30px;
    font-family: var(--font-primary);
}

.action-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-default);
}

.action-icon {
    width: 23px;
    height: 20px;
    background: #656768;
    position: relative;
}

.action-icon.comment::before,
.action-icon.comment::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--text-light);
    border-radius: 50%;
}

.action-icon.comment::before {
    top: 6px;
    left: 5px;
}

.action-icon.comment::after {
    top: 6px;
    right: 5px;
}

.action-card span {
    font-size: 16.67px;
    font-weight: 500;
    color: var(--text-dark);
}

.action-card.primary {
    background: var(--primary-color);
    box-shadow: var(--shadow-default);
}

.action-card.primary span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 22.8px;
}

.action-card.primary .action-icon {
    background: transparent;
    border: 2px solid var(--text-light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-card.primary .action-icon::after {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid var(--text-light);
    display: block;
}

/* Footer inferior con textos */
.bottom-texts {
    position: absolute;
    left: 60px;
    display: flex;
    gap: 300px;
    font-size: 16.67px;
    font-weight: 500;
    color: var(--text-dark);
    z-index: 10;
}

/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .content-vertical {
        display: none;
    }

    h1 {
        font-size: 42px;
    }

    .description {
        font-size: 15px;
    }

    .action-cards {
        right: 20px;
        bottom: 40px;
        width: 220px;
    }

    .bottom-texts {
        gap: 80px;
        left: 20px;
    }
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {
    .laser-page {
        background: var(--light-bg);
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        background-position: top center;
    }

    .content-grid::before {
        content: "";
        position: absolute;
        inset: 0;

        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .content-left {
        padding: 20px;
        margin-top: 0;
        top: 7%;
    }

    .content-right {
        padding: 20px;
    }

    .content-right img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    h1 {
        font-size: 32px;
    }

    .description {
        font-size: 14px;
        line-height: 1.6;
    }

    .features-grid {
        gap: 20px;
    }

    .two-column-list {
        grid-template-columns: 1fr;
    }

    .action-cards {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
    }

    .action-card {
        justify-content: center;
    }

    .bottom-texts {
        position: relative;
        flex-direction: column;
        gap: 10px;
        left: 0;
        margin-top: 20px;
        font-size: 14px;
    }
}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */

@media (max-width: 480px) {
    h1 {
        font-size: 26px;
    }

    .service-tag {
        font-size: 14px;
    }

    .feature-section h2 {
        font-size: 20px;
    }

    .list-with-dots li {
        font-size: 14px;
    }

    .action-card.primary span {
        font-size: 18px;
    }
}
