/* GLOBAL STYLES */
:root {
    --bg-dark: #0A0D10;
    --accent-ice: #E6FBFF;
    --text-white: #FFFFFF;
    --text-gray: #B0BCC7;
    --card-bg: #151A1F;
    --glass-bg: rgba(10, 13, 16, 0.85);
    --ice-glow: 0 0 15px rgba(230, 251, 255, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.tempo-zolpe-7814-body-main {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* TYPOGRAPHY */
.tempo-zolpe-7814-h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--accent-ice);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.tempo-zolpe-7814-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    color: var(--accent-ice);
}

.tempo-zolpe-7814-h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-ice);
}

.tempo-zolpe-7814-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.tempo-zolpe-7814-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.tempo-zolpe-7814-text-center {
    text-align: center;
}

/* HEADER */
.tempo-zolpe-7814-header-glass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
}

.tempo-zolpe-7814-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tempo-zolpe-7814-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-ice);
    letter-spacing: 2px;
}

.tempo-zolpe-7814-nav-checkbox {
    display: none;
}

.tempo-zolpe-7814-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.tempo-zolpe-7814-nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
}

.tempo-zolpe-7814-nav-link:hover {
    color: var(--accent-ice);
    text-shadow: var(--ice-glow);
}

/* BURGER */
.tempo-zolpe-7814-burger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.tempo-zolpe-7814-burger-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--accent-ice);
    transition: var(--transition);
}

/* HERO SECTION */
.tempo-zolpe-7814-hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
}

.tempo-zolpe-7814-hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

.tempo-zolpe-7814-hero-image-box {
    flex: 1;
}

.tempo-zolpe-7814-hero-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 rgba(230, 251, 255, 0.05);
    object-fit: cover;
}

.tempo-zolpe-7814-hero-content {
    flex: 1.2;
}

.tempo-zolpe-7814-hero-triplet {
    display: flex;
    gap: 30px;
}

.tempo-zolpe-7814-triplet-item {
    flex: 1;
    background: var(--card-bg);
    padding: 20px;
    border-top: 2px solid var(--accent-ice);
}

.tempo-zolpe-7814-triplet-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* BUTTONS */
.tempo-zolpe-7814-btn-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--accent-ice);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.tempo-zolpe-7814-btn-primary:hover {
    box-shadow: 0 0 25px rgba(230, 251, 255, 0.6);
    transform: translateY(-2px);
}

.tempo-zolpe-7814-btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--accent-ice);
    border: 1px solid var(--accent-ice);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.tempo-zolpe-7814-btn-secondary:hover {
    background-color: rgba(230, 251, 255, 0.1);
}

/* PRICE SECTION */
.tempo-zolpe-7814-section-dark {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.tempo-zolpe-7814-section-ice {
    padding: 100px 0;
    background-color: #0F1418;
}

.tempo-zolpe-7814-quick-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tempo-zolpe-7814-quick-link {
    padding: 8px 20px;
    background: rgba(230, 251, 255, 0.05);
    color: var(--accent-ice);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(230, 251, 255, 0.2);
    transition: var(--transition);
}

.tempo-zolpe-7814-quick-link:hover {
    border-color: var(--accent-ice);
}

.tempo-zolpe-7814-price-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.tempo-zolpe-7814-price-card {
    flex: 1;
    background: var(--card-bg);
    padding: 40px 30px;
    border: 1px solid rgba(230, 251, 255, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.tempo-zolpe-7814-price-card:hover {
    border-color: var(--accent-ice);
    transform: translateY(-10px);
}

.tempo-zolpe-7814-price-featured {
    border: 1px solid var(--accent-ice);
    box-shadow: var(--ice-glow);
}

.tempo-zolpe-7814-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-ice);
    color: var(--bg-dark);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tempo-zolpe-7814-price-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.tempo-zolpe-7814-price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-ice);
    text-align: center;
    margin-bottom: 30px;
}

.tempo-zolpe-7814-price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.tempo-zolpe-7814-price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

/* REVIEWS */
.tempo-zolpe-7814-reviews-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.tempo-zolpe-7814-review-item {
    min-width: 350px;
    background: var(--card-bg);
    padding: 30px;
    border-left: 3px solid var(--accent-ice);
}

.tempo-zolpe-7814-review-text {
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 20px;
}

.tempo-zolpe-7814-review-author {
    color: var(--accent-ice);
    font-weight: 600;
}

/* TARGET LIST */
.tempo-zolpe-7814-target-photo-top {
    margin-bottom: 40px;
}

.tempo-zolpe-7814-target-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    margin-top: 30px;
}

.tempo-zolpe-7814-target-list li {
    background: rgba(230, 251, 255, 0.03);
    padding: 20px;
    border-left: 2px solid var(--accent-ice);
    color: var(--text-gray);
}

/* BENEFITS GRID */
.tempo-zolpe-7814-benefits-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tempo-zolpe-7814-benefits-content {
    flex: 1;
}

.tempo-zolpe-7814-benefits-image {
    flex: 1;
}

.tempo-zolpe-7814-benefits-list {
    list-style: none;
    margin-top: 30px;
}

.tempo-zolpe-7814-benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.tempo-zolpe-7814-benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-ice);
}

/* QUOTE */
.tempo-zolpe-7814-section-quote {
    padding: 120px 0;
    background: linear-gradient(rgba(10, 13, 16, 0.9), rgba(10, 13, 16, 0.9)), url('https://placehold.co/1920x600/0A0D10/E6FBFF?text=Focus') center/cover;
    text-align: center;
}

.tempo-zolpe-7814-blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.tempo-zolpe-7814-blockquote p {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--text-white);
    margin-bottom: 30px;
}

.tempo-zolpe-7814-cite {
    font-size: 1.1rem;
    color: var(--accent-ice);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ */
.tempo-zolpe-7814-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.tempo-zolpe-7814-faq-item {
    margin-bottom: 15px;
    background: var(--card-bg);
}

.tempo-zolpe-7814-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--accent-ice);
    outline: none;
    list-style: none;
}

.tempo-zolpe-7814-faq-summary::-webkit-details-marker {
    display: none;
}

.tempo-zolpe-7814-faq-content {
    padding: 0 20px 20px 20px;
    color: var(--text-gray);
}

/* FORM */
.tempo-zolpe-7814-section-form {
    padding: 100px 0;
    background: #0D1115;
}

.tempo-zolpe-7814-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border: 1px solid rgba(230, 251, 255, 0.1);
}

.tempo-zolpe-7814-main-form {
    margin-top: 30px;
}

.tempo-zolpe-7814-input-group {
    margin-bottom: 20px;
}

.tempo-zolpe-7814-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.tempo-zolpe-7814-input, 
.tempo-zolpe-7814-textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid rgba(230, 251, 255, 0.2);
    color: var(--text-white);
    outline: none;
    transition: var(--transition);
}

.tempo-zolpe-7814-textarea {
    height: 120px;
    resize: vertical;
}

.tempo-zolpe-7814-input:focus, 
.tempo-zolpe-7814-textarea:focus {
    border-color: var(--accent-ice);
    box-shadow: var(--ice-glow);
}

.tempo-zolpe-7814-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.tempo-zolpe-7814-label-checkbox {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.tempo-zolpe-7814-label-checkbox a {
    color: var(--accent-ice);
}

.tempo-zolpe-7814-btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-ice);
    color: var(--bg-dark);
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.tempo-zolpe-7814-btn-submit:hover {
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.5);
}

/* EXTRA TEXT LISTS */
.tempo-zolpe-7814-text-list {
    margin: 25px 0;
    list-style: none;
}

.tempo-zolpe-7814-text-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    border-left: 2px solid var(--accent-ice);
    color: var(--text-gray);
}

/* FOOTER */
.tempo-zolpe-7814-footer {
    background: var(--bg-dark);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(230, 251, 255, 0.1);
}

.tempo-zolpe-7814-footer-top {
    margin-bottom: 60px;
}

.tempo-zolpe-7814-footer-info {
    max-width: 400px;
}

.tempo-zolpe-7814-footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-ice);
    margin-bottom: 20px;
}

.tempo-zolpe-7814-footer-link {
    color: var(--accent-ice);
    text-decoration: none;
}

.tempo-zolpe-7814-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-gray);
}

.tempo-zolpe-7814-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tempo-zolpe-7814-footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.tempo-zolpe-7814-footer-links a:hover {
    color: var(--accent-ice);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tempo-zolpe-7814-hero-grid, 
    .tempo-zolpe-7814-benefits-grid {
        flex-direction: column;
    }
    
    .tempo-zolpe-7814-hero-triplet, 
    .tempo-zolpe-7814-price-grid {
        flex-direction: column;
    }

    .tempo-zolpe-7814-target-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tempo-zolpe-7814-burger-btn {
        display: flex;
    }

    .tempo-zolpe-7814-main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        transition: var(--transition);
        padding: 40px;
    }

    .tempo-zolpe-7814-nav-checkbox:checked ~ .tempo-zolpe-7814-main-nav {
        left: 0;
    }

    .tempo-zolpe-7814-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .tempo-zolpe-7814-nav-checkbox:checked ~ .tempo-zolpe-7814-burger-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .tempo-zolpe-7814-nav-checkbox:checked ~ .tempo-zolpe-7814-burger-btn span:nth-child(2) {
        opacity: 0;
    }

    .tempo-zolpe-7814-nav-checkbox:checked ~ .tempo-zolpe-7814-burger-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .tempo-zolpe-7814-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}