/* Variables */
:root {
    --primary-color: #FF5722;
    --primary-color-light: #FF7043;
    --primary-color-dark: #E64A19;
    --secondary-color: #2A6877;
    --secondary-color-light: #3A7D8C;
    --secondary-color-dark: #1D5766;
    --text-color: #333333;
    --text-color-light: #666666;
    --background-color: #FFFFFF;
    --background-alt: #FFF3ED;
    --border-color: #E5E8ED;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --header-height: 90px;
    --header-height-scrolled: 70px;
    --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.07);
    --shadow-large: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    cursor: url('images/icons/shovel-cursor.png'), auto;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    color: var(--primary-color-dark);
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-color-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
    cursor: url('images/icons/hammer-cursor.png'), pointer;
}

a:hover {
    color: var(--primary-color-dark);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: url('images/icons/hammer-cursor.png'), pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--primary-color-dark);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--border-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    background-color: transparent !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.header.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.header.scrolled {
    background: #FFFFFF;
    padding: 10px 0;
}

/* Ajuste do menu para a direita */
.header .container {
    position: relative;
    width: 100%;
    max-width: 100% !important;
    padding: 0 5%;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    width: auto;
    text-align: center;
}

.logo img {
    height: 120px;
    width: auto;
    max-width: none;
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.2);
    object-fit: contain;
    object-position: center;
    transform: scale(0.9);
    transform-origin: center center;
}

.nav-menu {
    position: static;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    width: auto;
}

.header .nav-menu li {
    margin-left: 15px;
    display: inline-block;
}

.header .nav-menu li:first-child {
    margin-left: 0;
}

.header .nav-menu li a {
    white-space: nowrap;
    display: block;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.header.scrolled .nav-menu a {
    color: var(--text-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    margin-left: 15px;
}

.nav-btn:hover {
    background-color: var(--primary-color-dark);
    color: white !important;
}

.nav-btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: var(--transition-normal);
}

.header.scrolled .nav-toggle span {
    background-color: var(--text-color);
}

.nav-toggle span.active:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle span.active:nth-child(2) {
    opacity: 0;
}

.nav-toggle span.active:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(230, 74, 25, 0.85), rgba(255, 87, 34, 0.85)), url('hero-bg.jpg') no-repeat center center/cover;
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.hero-btns .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.animate-up {
    animation: fadeInUp 1s forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    width: 40px;
    text-align: center;
}

.scroll-down a {
    color: white;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

.btn-hero {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    cursor: url('images/icons/hammer-cursor.png'), pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
    margin-right: 15px;
    min-width: 200px;
}

.btn-hero .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(255, 87, 34, 0.25);
    transform: translateY(4px);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-hero .edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(to right, var(--primary-color-dark), var(--primary-color));
    z-index: 2;
}

.btn-hero .front {
    position: relative;
    display: block;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 17px;
    color: #fff;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-light));
    transform: translateY(-4px);
    transition: all 0.3s ease;
    z-index: 3;
}

.btn-hero:hover .front {
    transform: translateY(-6px);
}

.btn-hero:hover .shadow {
    transform: translateY(6px);
    opacity: 0.5;
}

.btn-hero:active .front {
    transform: translateY(-2px);
}

.btn-hero:active .shadow {
    transform: translateY(2px);
}

.btn-hero .front span {
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

@media (max-width: 768px) {
    .btn-hero .front {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .btn-hero {
        min-width: 180px;
    }
}

/* Sobre Section */
.section-sobre {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #FFF3ED 0%, #FFE3D5 100%);
    overflow: hidden;
}

.landscape-contour {
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    z-index: 1;
}

.top-contour {
    top: 0;
    background: url('top-contour.svg') no-repeat center top;
    background-size: cover;
}

.bottom-contour {
    bottom: 0;
    background: url('bottom-contour.svg') no-repeat center bottom;
    background-size: cover;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

.text-block {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.text-block p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.valores-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.valores-list li {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.valores-list i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
}

/* Serviços Section */
.section-servicos {
    padding: 100px 0;
    background-color: var(--background-color);
    position: relative;
}

.section-servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('geology-pattern.svg') repeat;
    opacity: 0.05;
    z-index: 1;
}

.servicos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.servico-item {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: url('images/icons/hammer-cursor.png'), pointer;
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    max-width: calc(25% - 30px);
}

.servico-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--primary-color-light);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30%, 30%);
    z-index: -1;
    transition: var(--transition-slow);
}

.servico-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.servico-item:hover::before {
    transform: translate(20%, 20%) scale(1.2);
    opacity: 0.1;
}

.servico-icon {
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.servico-icon i {
    color: var(--primary-color);
}

.servico-item:hover .servico-icon {
    transform: scale(1.1) rotate(5deg);
}

.servico-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.servico-item p {
    margin-bottom: 25px;
    color: var(--text-color-light);
}

.servico-link {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.servico-link i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.servico-link:hover i {
    transform: translateX(5px);
}

/* Portfolio Section */
.section-portfolio {
    padding: 100px 0;
    background-color: var(--background-alt);
    position: relative;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 300px;
    background: var(--primary-color);
    background-size: cover;
    background-position: center;
    color: white;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
}

.portfolio-item:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('portfolio1.jpg');
}

.portfolio-item:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('portfolio2.jpg');
}

.portfolio-item:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('portfolio3.jpg');
}

.portfolio-item:nth-child(4) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('portfolio4.jpg');
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(30px);
    opacity: 0.9;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.portfolio-content p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.ver-mais {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
}

.ver-mais i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.ver-mais:hover i {
    transform: translateX(5px);
}

/* Contacto Section */
.section-contacto {
    background-color: var(--background-alt);
    padding: 60px 0;
    position: relative;
    border-bottom: none;
    margin-bottom: 0;
}

.contacto-container {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    max-width: 1100px;
    margin: 0 auto;
}

.contacto-info {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacto-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: white;
}

.contacto-info p {
    margin-bottom: 20px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.2rem;
    margin-right: 12px;
    color: var(--secondary-color-light);
    margin-top: 3px;
}

.info-item h4 {
    margin-bottom: 3px;
    font-size: 1rem;
    color: white;
}

.info-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: var(--transition-fast);
    cursor: url('images/icons/hammer-cursor.png'), pointer;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contacto-form {
    flex: 1.5;
    min-width: 300px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.contacto-form form {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-group:last-of-type {
    margin-bottom: 30px;
}

.row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.row .form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition-normal);
    font-size: 0.95rem;
}

.form-group textarea {
    resize: none;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(226, 145, 79, 0.1);
}

.contacto-form .btn-primary {
    align-self: flex-start;
    padding: 10px 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--primary-color);
    border: none;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.contacto-form .btn-primary:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
}

.form-status {
    margin-bottom: 15px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}

.status-success {
    background-color: rgba(76, 175, 80, 0.15);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: block;
}

.status-error {
    background-color: rgba(244, 67, 54, 0.15);
    color: #d32f2f;
    border: 1px solid rgba(244, 67, 54, 0.3);
    display: block;
}

.btn-disabled {
    opacity: 0.7;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Footer */
.footer {
    background-color: #FFFFFF;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-top: none;
    border-bottom: none;
    margin-top: 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    text-align: center;
    margin-bottom: 15px;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-color-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .servico-item {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .header {
        padding: 15px 0;
        background-color: white;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle span {
        background-color: var(--text-color);
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background-color: white;
        transition: var(--transition-normal);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a {
        color: var(--text-color);
        font-size: 1.1rem;
    }
    
    .servicos-container {
        grid-template-columns: 1fr;
    }
    
    .text-block {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    body, a, button, .btn, .servico-item, .social-links a, input[type="submit"] {
        cursor: auto;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .valores-list {
        grid-template-columns: 1fr;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .contacto-info, 
    .contacto-form {
        padding: 30px 20px;
    }
}

/* Cursor Personalizado Interativo */
.custom-cursor {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease-in-out, height 0.15s ease-in-out, background-color 0.15s ease-in-out;
    z-index: 9999;
}

.cursor-circle {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    background-color: rgba(255, 87, 34, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease-in-out, height 0.25s ease-in-out, border-color 0.25s ease-in-out, opacity 0.25s ease-in-out;
    z-index: 9998;
}

/* Efeitos de interação do cursor */
.cursor-dot.active {
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
}

.cursor-circle.active {
    width: 50px;
    height: 50px;
    border-color: var(--secondary-color);
    background-color: rgba(42, 104, 119, 0.2);
}

.cursor-dot.clicked {
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%) scale(0.8);
}

.cursor-circle.clicked {
    width: 30px;
    height: 30px;
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.8);
}

/* Esconder cursor personalizado em dispositivos móveis */
@media (max-width: 768px) {
    .cursor-dot, .cursor-circle {
        display: none;
    }
}

/* Efeito sutil de hover para o link Nova Meta */
.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #FF5722;
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

.hover-underline:hover {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

/* Ajuste para vídeo de fundo */
#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo mantém sua proporção e cobre todo o container */
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
}

/* Responsivo para dispositivos móveis */
@media screen and (max-width: 575px) {
    .servico-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
} 