/* ==================================
   RESET BÁSICO
================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================================
   ESTRUTURA GERAL
================================== */

body {
    background-color: rgb(63, 149, 247);
    font-family: Arial, Helvetica, sans-serif;
}

header { 
    text-align: center;
    padding: 20px;
}

/* ==================================
   NAVBAR - DESKTOP
================================== */

nav {
    background-color: #333;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav li {
    display: inline-block;
    position: relative;
}

nav li a {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 15px;
}

nav li a:hover {
    background-color: red;
}

/* ==================================
   DROPDOWN - DESKTOP
================================== */

.dropdown-menu {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    display: none;
    min-width: 180px;
    z-index: 10;
    text-align: left;
}

.dropdown-menu a {
    display: block;
    color: black;
    padding: 10px 15px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Submenu lateral */
.submenu-container {
    position: relative;
}

.submenu-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #45a1f7;
    min-width: 160px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

.submenu-container:hover .submenu-content {
    display: block;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
    color: rgb(75, 188, 233);
}

/* ==================================
   CONTEÚDO
================================== */

section {
    text-align: center;
    padding: 30px 15px;
}

.servico1,
.servico2,
.servico3 {
    margin-bottom: 20px;
}

/* ==================================
   BOTÃO WHATSAPP
================================== */

#whats {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: green;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
}

/* ==================================
   LINKTREE - INDEX.HTML
================================== */

.linktree-body {
    background: #0f172a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.linktree-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    text-align: center;
}

.linktree-title {
    font-size: 32px;
    margin-bottom: 5px;
}

.linktree-subtitle {
    font-size: 14px;
    color: #cbd5f5;
    margin-bottom: 30px;
}

.linktree-btn {
    display: block;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 15px;
    margin-bottom: 14px;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.linktree-btn:hover {
    background: #1d4ed8;
    transform: scale(1.02);
}

.linktree-secondary {
    background: #1e293b;
}

.linktree-secondary:hover {
    background: #334155;
}

.linktree-badge {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

/* ==================================
   MENU HAMBURGUER + MOBILE
================================== */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    padding: 15px;
    cursor: pointer;
    text-align: right;
    max-width: 1200px;
    margin: 0 auto;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        background-color: #333;
    }

    nav ul {
        display: none;
        width: 100%;
        background-color: #333;
    }

    nav ul.active {
        display: block;
    }

    nav li {
        display: block;
        width: 100%;
    }

    nav li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #444;
    }

    /* Dropdown vira lista normal no mobile */
    .dropdown-menu,
    .submenu-content {
        position: static;
        display: block;
        background-color: #222;
        box-shadow: none;
    }

    .dropdown-menu a,
    .submenu-content a {
        color: white;
        padding-left: 30px;
    }
}
/* ===============================
   APLICATIVOS - PÁGINA
================================ */

.page-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
}

.page-header p {
    margin-top: 10px;
    opacity: 0.9;
}

.apps-section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.apps-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.app-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    text-align: center;
}

.app-card h3 {
    margin-bottom: 10px;
}

.app-card p {
    margin-bottom: 20px;
}

.app-card.destaque {
    border: 3px solid #2563eb;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    background: #2563eb;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
}

.store-btn.ios {
    background: #111827;
}

.store-btn:hover {
    opacity: 0.9;
}

.cta-link {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    color: #2563eb;
}

/* ===============================
   GALERIA - VÍDEOS
================================ */

.video-card iframe,
.video-card video {
    width: 100%;
    border-radius: 10px;
    border: none;
}

/* Horizontal padrão (16:9) */
.video-card iframe {
    aspect-ratio: 16 / 9;
}

/* Vertical (9:16) */
.video-card.vertical iframe,
.video-card.vertical video {
    aspect-ratio: 9 / 16;
}

/* Deixa vertical mais elegante */
.video-card.vertical {
    max-width: 360px;
    margin: 0 auto;
}
/* ===============================
   CALENDÁRIO DE GRAVAÇÕES
================================ */

.calendar-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.calendar-section h2 {
    margin-bottom: 10px;
}

.calendar-info {
    margin-bottom: 25px;
    opacity: 0.9;
}

.calendar-wrapper {
    width: 100%;
    overflow-x: auto;
}

.calendar-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}
