/*
Theme Name: Todo Tuxpan Coming Soon
Theme URI: https://todotuxpan.com
Author: Todo Tuxpan
Description: Tema temporal de lanzamiento para Todo Tuxpan.
Version: 1.0
Text Domain: todotuxpan-coming-soon
*/

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html,
body{
    width:100%;
    min-height:100%;
}

body{
    font-family:'Poppins', Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0,176,185,.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(214,155,45,.16), transparent 32%),
        linear-gradient(135deg, #F8FAFB 0%, #eef7f8 45%, #ffffff 100%);
    color:#1E3A5F;
    overflow-x:hidden;
}

.tt-coming-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:42px 22px;
    position:relative;
}

.tt-coming-page::before{
    content:"";
    position:absolute;
    inset:auto -120px -160px auto;
    width:420px;
    height:420px;
    background:#00B0B9;
    opacity:.08;
    border-radius:50%;
}

.tt-coming-card{
    width:1200px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.8);
    border-radius:34px;
    box-shadow:0 30px 90px rgba(30,58,95,.14);
    padding:52px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.tt-coming-card::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:7px;
    background:linear-gradient(90deg, #00B0B9, #D69B2D, #1E3A5F);
}

.tt-logo{
    width:260px;
    max-width:80%;
    height:auto;
    margin:0 auto 28px;
    display:block;
}

.tt-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 18px;
    border-radius:999px;
    background:rgba(0,176,185,.12);
    color:#00B0B9;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:22px;
}

.tt-title{
    font-size:clamp(38px, 6vw, 76px);
    line-height:.95;
    color:#1E3A5F;
    font-weight:900;
    letter-spacing:-.04em;
    margin-bottom:22px;
}

.tt-title span{
    color:#D69B2D;
}

.tt-description{
    width:900px;
    margin:0 auto 38px;
    color:#506074;
    font-size:18px;
    line-height:1.7;
}

.tt-description strong{
    color:#1E3A5F;
}

.tt-countdown{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
    margin:0 auto 34px;
    width:min(100%, 760px);
}

.tt-time-box{
    background:#ffffff;
    border:1px solid #dcecef;
    border-radius:24px;
    padding:26px 14px;
    box-shadow:0 16px 36px rgba(30,58,95,.08);
}

.tt-time-box strong{
    display:block;
    font-size:clamp(34px, 5vw, 56px);
    line-height:1;
    color:#00B0B9;
    font-weight:900;
    margin-bottom:8px;
}

.tt-time-box span{
    display:block;
    font-size:13px;
    font-weight:800;
    color:#1E3A5F;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.tt-small-message{
    font-size:16px;
    color:#506074;
    margin-bottom:30px;
}

.tt-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.tt-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 24px;
    border-radius:999px;
    text-decoration:none;
    font-weight:800;
    font-size:15px;
    transition:.25s ease;
}

.tt-btn.primary{
    background:#00B0B9;
    color:#fff;
    box-shadow:0 12px 26px rgba(0,176,185,.28);
}

.tt-btn.primary:hover{
    background:#1E3A5F;
    transform:translateY(-2px);
}

.tt-btn.secondary{
    background:#fff;
    color:#1E3A5F;
    border:1px solid #dcecef;
}

.tt-btn.secondary:hover{
    border-color:#00B0B9;
    color:#00B0B9;
    transform:translateY(-2px);
}

.tt-footer-note{
    margin-top:34px;
    font-size:13px;
    color:#7a8795;
}

@media(max-width:720px){

    .tt-coming-card{
        padding:38px 22px;
        border-radius:26px;
    }

    .tt-logo{
        width:210px;
    }

    .tt-description{
        font-size:16px;
    }

    .tt-countdown{
        grid-template-columns:repeat(2, 1fr);
        gap:12px;
    }

    .tt-time-box{
        padding:22px 10px;
        border-radius:20px;
    }

}

@media(max-width:420px){

    .tt-countdown{
        grid-template-columns:1fr 1fr;
    }

    .tt-title{
        font-size:40px;
    }

}