/* ==========================================
   RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    background: #1a1a1a;
    padding: 18px 200px;
    --position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 100px;
    display: flex;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-tazza {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    font-style: italic;
    line-height: 1;
}

.logo-mkt {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: lowercase;
    padding-left: 2px;
    opacity: 0.9;
}

/* ==========================================
   SEÇÃO VÍDEO
   ========================================== */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;          /* Fullscreen */
    --margin-top: 80px;       /* Espaço do header */
    overflow: hidden;
    background: #f5f5f5;   /* Fallback enquanto vídeo carrega */
}

/* Vídeo de fundo */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Overlay sutil */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

/* ==========================================
   REDES SOCIAIS - SOBRE O VÍDEO
   ========================================== */
.social-links {
    position: absolute;
    bottom: 40px;           /* Alinhado na parte inferior */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #FFFFFF;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover {
    color: #5b5bd6;
    transform: translateY(-3px);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #2d2d2d;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 80px 80px;
    min-height: 200px;
}

/* Lado esquerdo vazio */
.footer-left {
    display: flex;
    align-items: flex-end;
}

/* Lado direito: contato */
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
	padding-left:200px;
}

.footer-address {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

.footer-phone {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 5px;
}

.footer-email a {
    font-size: 15px;
    color: #aaa;
    text-decoration: none;
    font-style: italic;
    transition: color 0.3s;
}

.footer-email a:hover {
    color: #ffffff;
}

/* Barra inferior roxa/azul */
.footer-bar {
    height: 8px;
    background: #5b5bd6;
    width: 100%;
}

/* ==========================================
   RESPONSIVO - TABLET
   ========================================== */
@media (max-width: 1024px) {
    .footer-content {
        padding: 50px 60px;
    }
}

/* ==========================================
   RESPONSIVO - MOBILE
   ========================================== */
@media (max-width: 768px) {

    /* Header */
    .header {
        padding: 15px 25px;
        height: 65px;
    }

    .logo-tazza {
        font-size: 28px;
    }

    .logo-mkt {
        font-size: 11px;
    }

    /* Vídeo */
    .video-section {
        margin-top: 65px;
        height: calc(100vh - 65px);
    }

    /* Redes sociais */
    .social-links {
        bottom: 30px;
        gap: 20px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 30px;
    }

    .footer-left {
        display: none; /* Oculta lado vazio em mobile */
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-address {
        font-size: 13px;
    }

    .footer-phone {
        font-size: 20px;
    }
}

/* ==========================================
   RESPONSIVO - MOBILE PEQUENO
   ========================================== */
@media (max-width: 480px) {

    .header {
        padding: 12px 20px;
        height: 60px;
    }

    .logo-tazza {
        font-size: 24px;
    }

    .video-section {
        margin-top: 60px;
        height: calc(100vh - 60px);
    }

    .social-links {
        bottom: 25px;
        gap: 15px;
    }

    .social-links a {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .footer-content {
        padding: 35px 20px;
    }

    .footer-phone {
        font-size: 18px;
    }
}
