/* 
* Raymus Rastreadores - Estilo Principal
* Desenvolvido por Manus AI
*/

/* ===== VARIÁVEIS ===== */
:root {
    /* Cores principais */
    --primary-color: #1E3A8A;
    --primary-dark: #0F2557;
    --primary-light: #3B82F6;
    --secondary-color: #F03E3E;
    --secondary-dark: #C81E1E;
    --gray-light: #F9FAFB;
    --gray-medium: #D1D5DB;
    --gray-dark: #6B7280;
    --text-dark: #111827;
    --text-light: #FFFFFF;
    
    /* Fontes */
    --heading-font: 'Roboto', sans-serif;
    --body-font: 'Lora', serif;
    
    /* Tamanhos */
    --container-width: 1200px;
    --header-height: 80px;
    --section-padding: 80px 0;
    --border-radius: 5px;
    
    /* Transições */
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* ===== UTILITÁRIOS ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-family: var(--heading-font);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--primary-dark);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 60px;
}

.logo img {
    height: 100%;
    width: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: var(--text-light);
    font-family: var(--heading-font);
    font-weight: 500;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.client-area .btn {
    padding: 10px 20px;
}

.mobile-menu-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION / CARROSSEL ===== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    margin-top: var(--header-height);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 37, 87, 0.8), rgba(15, 37, 87, 0.5));
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--text-light);
    max-width: 600px;
    z-index: 1;
}

.slide-text h1 {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 20px;
}

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-light);
}

.swiper-pagination-bullet {
    background-color: var(--text-light);
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

/* ===== SOBRE SECTION ===== */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.mission, .vision, .values {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.mission h4, .vision h4, .values h4 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.mission h4 i, .vision h4 i, .values h4 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.values ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.values ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* ===== SERVIÇOS SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-card h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray-dark);
}

/* ===== PLATAFORMA SECTION ===== */
.platform-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.platform-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.platform-features {
    flex: 1;
    min-width: 300px;
}

.platform-features h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    margin-bottom: 20px;
}

.feature-list li i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.feature-list li div h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.platform-features .btn {
    margin-top: 20px;
}

/* ===== GALERIA SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 37, 87, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--text-light);
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== CLIENTES SECTION ===== */
.testimonials-slider {
    margin-bottom: 50px;
}

.testimonial-item {
    padding: 20px;
}

.testimonial-content {
    background-color: var(--text-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
    opacity: 0.3;
}

.testimonial-text::before {
    top: -20px;
    left: 0;
}

.testimonial-text::after {
    bottom: -40px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-family: var(--heading-font);
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 5px;
}

.rating {
    color: #FFD700;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
}

.client-logo {
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.client-logo img {
    max-height: 120px;
    width: 120px;
}

/* ===== CONTATO SECTION ===== */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--heading-font);
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    background-color: var(--text-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.info-item div h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.social-media h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===== MAPA SECTION ===== */
.map-section {
    height: 450px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== ACESSO CLIENTE SECTION ===== */
.client-access-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.login-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--text-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-header h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--gray-dark);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 5px;
}

.forgot-password {
    color: var(--primary-color);
}

.forgot-password:hover {
    text-decoration: underline;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-medium);
}

.form-footer a {
    color: var(--primary-color);
}

.form-footer a:hover {
    text-decoration: underline;
}

.access-info {
    flex: 1;
    min-width: 300px;
}

.access-info h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.platform-benefits {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}

.benefit-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 15px;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.support-info {
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 30px;
}

.support-info h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.support-contacts {
    margin: 15px 0;
}

.support-contacts p {
    margin-bottom: 5px;
}

.support-contacts p i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* ===== FOOTER ===== */
#footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links, .footer-services, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-content h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-content h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li, .footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover, .footer-services ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal a {
    margin-left: 20px;
    opacity: 0.7;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-5px);
}

/* ===== Whatsapp flutuant BUTTON ===== */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px; /* ou ajuste conforme seu gosto */
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 30px;
  z-index: 99999 !important; /* força que fique sempre por cima */
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebea5;
  transform: scale(1.1);
}

.whatsapp-float {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 250px;
        height: calc(100vh - var(--header-height));
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
        --header-height: 70px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .slide-text {
        left: 5%;
        max-width: 90%;
    }
    
    .slide-text h1 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 150px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
    }
    
    .footer-legal a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .slide-text h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .slide-text p {
        margin-bottom: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}



