/* ─── HOME.CSS ─── */

/* ─── HERO ─── */
.hero {
    margin-top: 68px;
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    overflow: hidden;
    background:
        url('/images/tocmix-hero-home.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(2,2,2,0.82) 0%,
        rgba(2,2,2,0.65) 50%,
        rgba(2,2,2,0.35) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    animation: fadeUp 0.9s ease both;
}

.hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.hero h1 em {
    font-style: normal;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--yellow);
    display: block;
}

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── TEXTO CIRCULAR GIRANDO ─── */
.hero-circle {
    position: absolute;
    bottom: 8%;
    right: 5%;
    z-index: 2;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin 14s linear infinite;
}

.hero-circle-text {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    fill: rgba(255,255,255,0.85);
    text-transform: uppercase;
}

.hero-circle-icon {
    width: 5rem;
    height: 5rem;
    z-index: 1;
    display: block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ─── MARCA D'ÁGUA ─── */
.hero-watermark {
    position: absolute;
    bottom: -2%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    letter-spacing: -4px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 1;
}

/* ─── WHATSAPP FLUTUANTE ─── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: wpp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37,211,102,0.6);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: #020202;
    color: #fff;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #020202;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes wpp-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}


/* ─── STATS / DIFERENCIAIS ─── */
.stats-section {
    background: var(--navy);
    padding: 2rem 5%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,207,31,0.2);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255,207,31,0.25);
}

.stat-card:hover .stat-card-title {
    color: var(--navy);
}

.stat-card:hover .stat-card-desc {
    color: var(--gray-dark);
}

.stat-card:hover .stat-card-icon {
    background: rgba(2,2,2,0.1);
    color: var(--navy);
}

.stat-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,207,31,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--yellow);
    transition: all 0.3s ease;
}

.stat-card-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.stat-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.stat-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.stat-card-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* ─── STATS (antigo) ─── */
.stats {
    background: var(--navy);
    padding: 2.5rem 5%;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat { text-align: center; color: var(--white); }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* ─── SERVIÇOS ─── */
.services {
    padding: 3rem 5%;
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.service-body {
    padding: 1.2rem;
    border-top: 4px solid var(--yellow);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg { width: 24px; height: 24px; fill: var(--yellow); }

.service-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* ─── SOBRE ─── */
.about {
    padding: 6rem 5%;
    background: var(--white);
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-placeholder {
    width: 100%;
    height: 420px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 6px;
    padding: 1.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.about-badge-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.about-badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content .section-header { text-align: left; }
.about-content .section-divider { margin: 1rem 0 0; }

.about-text {
    color: var(--gray);
    line-height: 1.8;
    margin-top: 1.5rem;
    font-size: 0.975rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.about-feature::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: var(--yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d2340'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
    border-radius: 50%;
}

/* ─── ORÇAMENTO ─── */
.orcamento {
    padding: 6rem 5%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.orcamento::before {
    content: 'TOCMIX';
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 18rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    letter-spacing: -8px;
    pointer-events: none;
    user-select: none;
}

.orcamento-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.orcamento .section-header { text-align: center; }
.orcamento .section-title { color: var(--white); }
.orcamento .section-tag { color: var(--yellow); }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

input, select, textarea {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    width: 100%;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }

input:focus, select:focus, textarea:focus {
    border-color: var(--yellow);
    background: rgba(255,255,255,0.1);
}

select option { background: var(--navy); color: var(--white); }
textarea { resize: vertical; min-height: 110px; }

.form-submit { margin-top: 1.5rem; text-align: center; }

.btn-submit {
    background: var(--yellow);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 52px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

/* ─── LOGÍSTICA ─── */
.logistica {
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}
 
 
 
 
 
.logistica-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
 
.logistica-content {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
    border-left: 3px solid var(--yellow);
}
 
.logistica-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}
 
.logistica-title span { color: var(--yellow); }
 
.logistica-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 460px;
}
 
.btn-logistica {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255,207,31,0.3);
}
 
.btn-logistica:hover {
    background: #ffe55a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,207,31,0.45);
}
 
@media (max-width: 768px) {
    .logistica-inner { gap: 2rem; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero { min-height: 70vh; }
    .stats { gap: 2rem; }
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-badge { right: 0; bottom: -16px; }
    .form-grid { grid-template-columns: 1fr; }
}