@charset "utf-8";
/* CSS Document */
 /* Estilos adicionais para personalização */
        .banner-custom {
			/*background-image:url(../img/bg_atshots.webp) no-repeat center center;*/
            background:url(../img/bg_atshots.webp) no-repeat center center;
            background-size: cover;
            height: 60vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
		 .banner-custom-aventura{
			/*background-image:url(../img/bg_atshots.webp) no-repeat center center;*/
            background:url(../img/bg_aventura.webp) no-repeat center center;
            background-size: cover;
            height: 60vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        /* Estilo geral para a barra de busca */
.search-bar {
    padding: 20px;
    background-color: #646464; /* Fundo claro para destaque */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

/* Estilo do input */
.search-bar .form-control {
    border: 2px solid #ddd;
    border-radius: 25px 0 0 25px;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    width: 100%; /* Garante que o input ocupe toda a largura disponível */
}

.search-bar .form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Estilo do botão */
.search-bar .btn-primary {
    border-radius: 0 25px 25px 0;
    padding: 15px 20px;
    font-size: 16px;
    background-color: #ff8026;
    border: none;
    transition: all 0.3s ease-in-out;
    width: auto; /* Para que o botão tenha largura automática no desktop */
}

.search-bar .btn-primary:hover {
    background-color: #dc6d1e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .search-bar .form-control {
        border-radius: 25px;
        margin-bottom: 10px;
    }

    .search-bar .btn-primary {
        border-radius: 0px; /* Border-radius 0px no mobile */
        width: 100%; /* Faz o botão ocupar 100% da largura no mobile */
        margin-top: 10px; /* Espaço entre o campo de busca e o botão */
    }

    .search-bar .input-group {
		border-radius: 0px;
        flex-direction: column; /* Empilha o campo de busca e o botão no mobile */
    }
}

/* Desktop e tablet */
@media (min-width: 769px) {
    .search-bar .input-group {
		
        display: flex; /* Faz o campo de busca e o botão ficarem lado a lado */
    }

    .search-bar .form-control {
        border-radius: 25px 0 0 25px; /* Manter o border-radius no campo de busca */
        width: auto; /* Deixa o campo de busca com largura automática */
    }

    .search-bar .btn-primary {
        border-radius: 0 25px 25px 0; /* Mantém o border-radius do botão */
        width: auto; /* O botão tem largura automática */
    }
}


        .events-section {
            background-color: #f9f9f9;
            padding: 3rem 0;
        }
        .event-card {
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .event-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
        .event-card img {
            border-radius: 10px;
        }
        .event-card .card-body {
            background-color: #000;
            color: #fff;
            border-radius: 0 0 10px 10px;
        }
        .event-card .card-title {
            color: #ff8026;
        }
        .event-card .btn {
            background-color: #ff8026;
            border: none;
            color: #000;
        }
        .event-card .btn:hover {
            background-color: #ffc107;
            color: #000;
        }
        .footer-custom {
            background-color: #000000;
            color: #fff;
            padding: 2rem 0;
        }
        .footer-custom a {
            color: #ff8026;
            text-decoration: none;
        }
        .footer-custom a:hover {
            text-decoration: underline;
        }
		  .search-header {
            background-color: #000;
            color: #fff;
            padding: 2rem 0;
        }
        .search-header h1 {
            font-size: 2rem;
        }
        .search-header .form-control {
            border-radius: 0;
        }
        .search-header .btn-search {
            background-color: #ff8026;
            color: #000;
            border: none;
            border-radius: 0;
        }
        .search-header .btn-search:hover {
            background-color: #000;
            color: #ff8026;
        }
        .photo-card {
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .photo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        }
        .photo-card img {
            max-height: 200px;
            object-fit: cover;
        }
        .photo-card .card-body {
            background-color: #000;
            color: #fff;
        }
        .photo-card .btn {
            background-color: #ff8026;
            color: #000;
            border: 2px solid #ff8026;
            transition: 0.3s ease;
        }
        .photo-card .btn:hover {
            background-color: #000;
            color: #ff8026;
            border-color: #000;
        }
		/* Estilos adicionais */
        .event-header {
            background-color: #000;
            color: #fff;
            padding: 3rem 1rem;
            text-align: center;
        }
        .event-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .event-header p {
            font-size: 1.2rem;
            color: #ff8026;
        }
        .photo-card {
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .photo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        }
        .photo-card img {
            max-height: 450px;
            object-fit: cover;
        }
        .photo-card .card-body {
            text-align: center;
        }
        .photo-card .btn {
            background-color: #ff8026;
            color: #000;
            border: none;
            transition: 0.3s ease;
        }
        .photo-card .btn:hover {
            background-color: #000;
            color: #ff8026;
        }
		 .product-header {
            background-color: #000;
            color: #ff8026;
            padding: 3rem 1rem;
            text-align: center;
        }
        .product-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .product-header p {
            font-size: 1.2rem;
        }
        .product-details img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        }
        .price {
            font-size: 2rem;
            font-weight: bold;
            color: #ff8026;
        }
        .btn-purchase {
            background-color: #000;
            color: #ff8026;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.2rem;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .btn-purchase:hover {
            background-color: #ff8026;
            color: #000;
        }
		 .cart-header {
            background-color: #000;
            color: #ff8026;
            text-align: center;
            padding: 3rem 1rem;
        }
        .cart-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0;
        }
        .table tbody tr td img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 5px;
        }
        .btn-continue, .btn-checkout {
            padding: 1rem 1.5rem;
            font-size: 1.2rem;
            font-weight: bold;
        }
        .btn-continue {
            background-color: #ff8026;
            color: #000;
            border: none;
        }
        .btn-continue:hover {
            background-color: #e6c84b;
        }
        .btn-checkout {
            background-color: #000;
            color: #ff8026;
            border: none;
        }
        .btn-checkout:hover {
            background-color: #333;
        }
        .summary {
            background-color: #f9f9f9;
            padding: 2rem;
            border-radius: 10px;
        }
        .summary h4 {
            font-weight: bold;
        }
  .checkout-header {
            background-color: #000;
            color: #ff8026;
            text-align: center;
            padding: 3rem 1rem;
        }
        .checkout-header h1 {
            font-size: 2.5rem;
        }
        .form-label {
            font-weight: bold;
        }
        .btn-submit {
            background-color: #ff8026;
            color: #000;
            font-size: 1.2rem;
            font-weight: bold;
            padding: 1rem;
            border: none;
            width: 100%;
        }
        .btn-submit:hover {
            background-color: #e6c84b;
        }
        .summary {
            background-color: #f9f9f9;
            padding: 2rem;
            border-radius: 10px;
        }
		 .navbar {
            background-color: #000; /* Cor de fundo preta */
        }
        .navbar-brand {
            color: #ff8026; /* Cor amarela para o logo ou nome */
            font-weight: bold;
        }
        .navbar-nav .nav-link {
            color: #fff !important; /* Links brancos */
            font-size: 1.1rem;
        }
        .navbar-nav .nav-link:hover {
            color: #ff8026 !important; /* Cor amarela quando passar o mouse */
        }
        .navbar-toggler-icon {
            background-color: #ff8026; /* Ícone de menu de hambúrguer amarelo */
        }
		.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background-color 0.3s ease;
  }

  .whatsapp-btn:hover {
    background-color: #128c7e;
  }

  .whatsapp-icon img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .whatsapp-text {
    font-size: 14px;
    font-weight: bold;
    display: none; /* Esconde o texto por padrão */
  }

  .whatsapp-btn:hover .whatsapp-text {
    display: block;
  }