/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.header-content img {
    width: 80px;
    border-radius: 5px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

/* Menu Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
    align-self: flex-start;
    /* sobe para o topo */
    margin-top: 26px;
    /* ajuste fino da altura */
}

.menu {
    display: flex;
    gap: 25px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 30%;
        background-color: #0d47a1;
        position: absolute;
        top: 82px;
        /* abaixo do cabeçalho */
        right: 0;
        z-index: 1001;
        padding: 15px 0;
    }

    .menu a {
        padding: 10px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .menu.show {
        display: flex;
    }

    .header-content {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    nav {
        margin-top: 15px;
    }

    nav a {
        margin: 0 10px;
    }
}

/* Common Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Title */
.section-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: #0d47a1;
    border-bottom: 3px solid #1a73e8;
    display: inline-block;
    padding-bottom: 5px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #e3f2fd;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0d47a1;
}

.hero p {
    font-size: 18px;
    color: #555;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* Formulário de Busca */
.search-form {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.search-form input[type="text"],
.search-form select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1;
    min-width: 200px;
}

.search-form button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.search-form button:hover {
    background-color: #0d47a1;
}

@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
    }

    .search-form input[type="text"],
    .search-form select {
        width: 100%;
    }
}

/* Packages and Tips Grid */
.packages,
.tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

@media (min-width: 900px) {

    .packages,
    .tips {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Package and Tip Card */
.package,
.tip {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip {
    cursor: pointer;
}

.package:hover,
.tip:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.package img,
.tip img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.package-content,
.tip-content {
    padding: 20px;
}

.tip-content {
    text-align: center;
}

.package-content p {
    font-size: 15px;
    margin: 8px 0;
    color: #333;
    text-align: left;
    font-weight: bold;
}

.package-content p:nth-child(1) {
    font-weight: bold;
    color: #333;
}

.tip-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.package button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.package button:hover {
    background-color: #0d47a1;
}

/* About Section */
.about-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.about-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.about-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.team-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-images img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.values {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.value-card i {
    font-size: 30px;
    color: #1a73e8;
    margin-bottom: 10px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.value-card p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .about-content {
        padding: 20px;
    }

    .values {
        grid-template-columns: 1fr;
    }
}

/* Details Pages (Package and Tip) */
.package-details,
.tip-detail {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

.tip-detail {
    max-width: 800px;
    margin: 0 auto;
}

.package-details img,
.tip-detail img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.tip-detail img {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.package-details p,
.tip-detail p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
    text-align: left;
}

.tip-detail p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.package-details h2,
.tip-detail h2 {
    font-size: 24px;
    color: #0d47a1;
    margin-bottom: 15px;
}

.tip-detail h2 {
    font-size: 28px;
    color: #333;
    text-align: center;
}

/* Buttons in Details */
.buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.buttons button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons button:hover {
    background-color: #0d47a1;
}

/* Back Button */
.back-button,
.see-more {
    display: block;
    text-align: center;
    background-color: #1a73e8;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    width: 180px;
    margin: 20px auto;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-button:hover,
.see-more:hover {
    background-color: #0d47a1;
}

.back-button i {
    margin-right: 8px;
}

/* Rodapé */
footer {
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-content div {
    flex: 1;
    min-width: 200px;
}

.footer-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffd700;
}

.footer-content p,
.footer-content a {
    font-size: 14px;
    color: #e3f2fd;
    margin: 5px 0;
    text-decoration: none;
}

.footer-content a:hover {
    color: #ffd700;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

/* Botão WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .values {
        grid-template-columns: 1fr;
    }
}

/* Details Pages (Package and Tip) */
.package-details,
.tip-detail {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

.tip-detail {
    max-width: 800px;
    margin: 0 auto;
}

.package-details img,
.tip-detail img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.tip-detail img {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.package-details p,
.tip-detail p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
    text-align: left;
}

.tip-detail p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.package-details h2,
.tip-detail h2 {
    font-size: 24px;
    color: #0d47a1;
    margin-bottom: 15px;
}

.tip-detail h2 {
    font-size: 28px;
    color: #333;
    text-align: center;
}

/* Buttons in Details */
.buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.buttons button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons button:hover {
    background-color: #0d47a1;
}

/* Back Button */
.back-button,
.see-more {
    display: block;
    text-align: center;
    background-color: #1a73e8;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    width: 180px;
    margin: 20px auto;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-button:hover,
.see-more:hover {
    background-color: #0d47a1;
}

.back-button i {
    margin-right: 8px;
}

/* Rodapé */
footer {
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-content div {
    flex: 1;
    min-width: 200px;
}

.footer-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffd700;
}

.footer-content p,
.footer-content a {
    font-size: 14px;
    color: #e3f2fd;
    margin: 5px 0;
    text-decoration: none;
}

.footer-content a:hover {
    color: #ffd700;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

/* Botão WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .values {
        grid-template-columns: 1fr;
    }
}

/* Botão Instalar App (PWA) - Estilo Premium */
.pwa-install-btn {
    display: flex;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    /* Gradiente Dourado Premium */
    color: #0d47a1;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    /* Extra Bold */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    /* Glow Dourado */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Efeito Elástico */
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 9999;
}

.pwa-install-btn:hover {
    background: linear-gradient(135deg, #FFE57F 0%, #FFD700 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.pwa-install-btn i {
    font-size: 18px;
}

@keyframes slideUp {
    from {
        bottom: -50px;
        opacity: 0;
    }

    to {
        bottom: 20px;
        opacity: 1;
    }
}