.elementor-kit-7{--e-global-color-primary:#FFEFDA;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */<style>
/* ===========================
  PALETA DE COLOR CARIBE
=========================== */
:root {
    --caribbean-blue: #00A8C6;
    --ocean-blue: #007F9E;
    --sand: #F2E9D8;
    --sunset-orange: #FF7F50;
    --forest-green: #2E8B57;
    --white: #ffffff;
}

/* ===========================
  SECCIÓN GENERAL
=========================== */
.tours-section {
    padding: 70px 20px;
    background: var(--sand);
    font-family: "Poppins", sans-serif;
    animation: fadeIn 0.8s ease-out;
}

.tours-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--ocean-blue);
    font-weight: 700;
}

.tours-section p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 18px;
}

/* ===========================
  FILTROS
=========================== */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-buttons button {
    padding: 10px 22px;
    border: none;
    border-radius: 30px;
    background: var(--caribbean-blue);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background: var(--ocean-blue);
    transform: translateY(-3px);
}

/* ===========================
  GRID DE TOURS
=========================== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    cursor: pointer;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.tour-card:hover {
    transform: translateY(-8px);
}

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

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 22px;
    color: var(--ocean-blue);
    margin-bottom: 10px;
}

.tour-content p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--forest-green);
}

.btn-tour {
    display: inline-block;
    padding: 10px 16px;
    background: var(--sunset-orange);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-tour:hover {
    background: #ff6230;
}

/* ===========================
  ANIMACIONES
=========================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
</style>/* End custom CSS */