
/* 
Theme Name: BagsAndGo Theme
Theme URI: https://bagsandgo.com
Description: Custom theme for BagsAndGo - Luggage storage and transfer services
Author: BagsAndGo Team
Author URI: https://bagsandgo.com
Version: 2.0.1
Text Domain: bagsandgo
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: custom-header, custom-colors, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, woocommerce
*/

/* ==========================================================================
   THEME PRINCIPAL - BAGSANDGO
   ========================================================================== */

/* ==========================================================================
   THEME PRINCIPAL - BAGSANDGO
   ========================================================================== */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Container principal */
.site-content {
    width: 100%;
    overflow-x: hidden;
}

/* Hero Enhanced */
.hero-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 177.77vh;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,145,77,0.8) 0%, rgba(0,74,173,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: white;
}

/* Services Cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 50px auto;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.service-card.featured {
    border: 3px solid #FF914D;
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #FF914D;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.5rem;
    color: #FF914D;
    font-weight: bold;
    margin: 20px 0;
}

/* Locations Grid Home */
.locations-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.location-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.location-item:hover {
    transform: translateY(-5px);
}

.location-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.location-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.location-actions a {
    flex: 1;
    padding: 8px 15px;
    background: #FF914D;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.location-actions a:hover {
    background: #ff7a3d;
}

/* Trust Section */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-cards,
    .locations-grid-home,
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .locations-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .locations-grid-home {
        grid-template-columns: 1fr;
    }
}


