/* 
 * Arquivo CSS principal para index.php
 * Contém estilos que estavam inline no arquivo PHP
 */

/* Header Styles */
#page-header {
    top: 56px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile Social Container */
#mobile-social-container {
    top: 56px;
}

/* Social Media Sticky */
#socialmedia_sticky {
    position: fixed;
    text-align: left;
    left: auto;
    right: -130px;
    top: 125px;
    width: 182px;
    height: 227px;
    z-index: 50;
}

/* Social Media Images */
#socialmedia_facebook {
    border-width: 0;
    position: absolute;
    left: 7px;
    top: 1px;
    width: 150px;
    height: 45px;
    z-index: 0;
}

#socialmedia_instagram {
    border-width: 0;
    position: absolute;
    left: 7px;
    top: 91px;
    width: 150px;
    height: 45px;
    z-index: 1;
}

#socialmedia_youtube {
    border-width: 0;
    position: absolute;
    left: 7px;
    top: 181px;
    width: 150px;
    height: 45px;
    z-index: 3;
}

/* Main Content */
#spa-content {
    padding-top: 0; /* Removido espaço superior extra */
}

/* Carousel Section */
.carousel-section {
    margin-top: 0; /* Removido margem superior para colar no topo */
}

/* Weather Widget */
.weather-widget {
    width: 100%;
    height: 380px;
    border: none;
}

/* Browser Debug Panel */
#browser-debug {
    font-family: monospace;
}

/* Responsive Social Media */
@media (max-width: 768px) {
    #mobile-social-container {
        display: flex !important;
    }
    
    #socialmedia_sticky {
        display: none !important;
    }
}

@media (min-width: 769px) {
    #mobile-social-container {
        display: none !important;
    }
    
    #socialmedia_sticky {
        display: block !important;
    }
}

/* Removida animação 'pulse' específica do .tts-button (não utilizada) */