/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --background: #FFFFFF;
    --foreground: #000000;
    --card: #FFFFFF;
    --card-foreground: #000000;
    --primary: #FC6700;
    --primary-foreground: #FFFFFF;
    --secondary: #BDBDBD;
    --secondary-foreground: #000000;
    --muted: #949494;
    --muted-foreground: #333333;
    --border: #898989;
    --cta: #59D264;
    --cta-foreground: #FFFFFF;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 4px 20px rgba(252, 103, 0, 0.25);
    --shadow-green: 0 4px 20px rgba(89, 210, 100, 0.25);

    /* Border Radius */
    --radius: 0.75rem;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

.hidden {
    display: none !important;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.header .container {
    padding: 1.5rem 1rem;
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.75rem;
}

.header-logo img {
    height: 4.5rem;
    width: auto;
    cursor: pointer;
}

@media (min-width: 769px) {
    .header .container {
        padding: 1rem 1.5rem;
    }

    .header-grid {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 1rem;
    }

    .header-logo img {
        height: 4rem;
    }
}

.header-nav {
    display: none;
    justify-content: center;
    gap: 2rem;
}

.header-nav button {
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.header-nav button:hover {
    color: var(--primary);
}

.header-cta {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.btn-cta {
    background-color: var(--cta);
    color: var(--cta-foreground);
    border: none;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.btn-cta:hover {
    background-color: #4AC056;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(89, 210, 100, 0.3);
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }

    .header-logo img {
        height: 8rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
    overflow: hidden;
    background-color: var(--background);
    background-image: url('./assets/background-hero.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 1rem;
    /* Force full width across viewport */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 769px) {
    .hero {
        height: 79vh;
        max-height: none;
        margin-top: 100px;
        background-position: center top;
    }
}

@media (min-width: 1024px) {
    .hero {
        margin-top: 108px;
    }
}

/* Section Styles */
@media (min-width: 769px) {
    section {
        padding: 3rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

@media (min-width: 769px) {
    .section-header {
        margin-bottom: 3rem;
        padding-top: 2rem;
    }
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.3;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

@media (min-width: 769px) {
    .section-header h2 {
        font-size: 2.5rem;
        line-height: 1.4;
    }
}

.section-header .underline {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
    padding: 0 0.5rem;
    line-height: 1.5;
}

@media (min-width: 769px) {
    .section-subtitle {
        font-size: 1.25rem;
        padding: 0;
    }
}


@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 3.5rem;
    }
}

/* Equipment Section */
.section-equipments {
    background-color: #FFFFFF;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 769px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.equipment-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.equipment-card:hover {
    box-shadow: var(--shadow-orange);
    transform: scale(1.02);
}

@media (min-width: 769px) {
    .equipment-card:hover {
        transform: scale(1.05);
    }
}

.equipment-image {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #FFFFFF;
    padding: 1.5rem;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.equipment-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 769px) {
    .equipment-content {
        padding: 1.5rem;
    }
}

.equipment-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

@media (min-width: 769px) {
    .equipment-content h3 {
        font-size: 1.25rem;
    }
}

.equipment-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9375rem;
}

@media (min-width: 769px) {
    .equipment-content p {
        font-size: 1rem;
    }
}

.equipment-content .btn-cta {
    width: 100%;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

@media (min-width: 769px) {
    .button-group {
        margin-bottom: 3rem;
    }
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* About Section */
.section-about {
    background-color: #F3F4F6;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 769px) {
    .section-about {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1rem;
}

@media (min-width: 769px) {
    .about-grid {
        gap: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 769px) {
    .about-content {
        gap: 1.5rem;
    }
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
}

@media (min-width: 769px) {
    .about-content p {
        font-size: 1.125rem;
        line-height: 1.7;
    }
}

.text-primary {
    color: var(--primary);
}

.about-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

@media (min-width: 769px) {
    .location-info {
        font-size: 1rem;
    }
}

.icon-location {
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-location svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-image {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-orange);
    max-width: 300px;
}

.badge-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.badge-subtitle {
    font-size: 0.875rem;
}

/* Differentials Section */
.section-differentials {
    background-color: #FFFFFF;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

@media (min-width: 769px) {
    .section-differentials {
        padding-bottom: 4rem;
    }
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 769px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.differential-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 769px) {
    .differential-card {
        padding: 1.5rem;
    }
}

.differential-card:hover {
    box-shadow: var(--shadow-orange);
}

.differential-icon {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differential-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
}

.differential-content {
    flex: 1;
}

.differential-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.check-icon {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.differential-title h3 {
    font-weight: 700;
    color: var(--foreground);
    font-size: 0.9375rem;
    line-height: 1.4;
}

@media (min-width: 769px) {
    .differential-title h3 {
        font-size: 1rem;
    }
}

.differential-content p {
    color: var(--muted-foreground);
    font-size: 0.8125rem;
    line-height: 1.5;
}

@media (min-width: 769px) {
    .differential-content p {
        font-size: 0.875rem;
    }
}

.differentials-cta {
    text-align: center;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.5;
}

@media (min-width: 769px) {
    .cta-text {
        font-size: 1.125rem;
    }
}

/* Contact Section */
.section-contact {
    position: relative;
    background-color: #F3F4F6;
    overflow: hidden;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

@media (min-width: 769px) {
    .section-contact {
        padding-bottom: 3rem;
        padding-top: 3rem;
    }
}

.section-contact::before,
.section-contact::after {
    content: '';
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: rgba(252, 103, 0, 0.05);
    filter: blur(60px);
}

@media (min-width: 769px) {
    .section-contact::before,
    .section-contact::after {
        width: 24rem;
        height: 24rem;
        filter: blur(80px);
    }
}

.section-contact::before {
    top: 0;
    right: 0;
}

.section-contact::after {
    bottom: 0;
    left: 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 769px) {
    .contact-header {
        margin-bottom: 4rem;
    }
}

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(252, 103, 0, 0.1);
    border: 1px solid rgba(252, 103, 0, 0.2);
    border-radius: 9999px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-badge-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(252, 103, 0, 0.2);
}

.contact-badge-btn:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 103, 0, 0.3);
}

.contact-badge-btn:active {
    transform: translateY(0);
}

@media (min-width: 769px) {
    .contact-badge {
        margin-bottom: 1.5rem;
    }
}

.contact-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.3;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

@media (min-width: 769px) {
    .contact-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .contact-header h2 {
        font-size: 3.75rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 0.5rem;
    line-height: 1.5;
}

@media (min-width: 769px) {
    .contact-subtitle {
        font-size: 1.25rem;
        padding: 0;
    }
}

.contact-main-card {
    max-width: 80rem;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 769px) {
    .contact-main-card {
        margin: 0 auto 3rem;
    }
}

.contact-card-content {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C00 100%);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 60px rgba(252, 103, 0, 0.2);
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .contact-card-content {
        padding: 2.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .contact-card-content {
        padding: 3rem;
    }
}

.contact-card-content:hover {
    box-shadow: 0 25px 70px rgba(252, 103, 0, 0.3);
}

@media (min-width: 769px) {
    .contact-card-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        align-items: center;
    }
}

.contact-card-left {
    color: #FFFFFF;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #4ADE80;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.contact-card-left h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

@media (min-width: 769px) {
    .contact-card-left h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .contact-card-left h3 {
        font-size: 2.5rem;
    }
}

.contact-card-left > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

@media (min-width: 769px) {
    .contact-card-left > p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}

.contact-benefits {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-check {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 769px) {
    .contact-card-right {
        margin-top: 0;
    }
}

.btn-whatsapp-large {
    width: 100%;
    background-color: #FFFFFF;
    color: var(--primary);
    border: none;
    padding: 1.25rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 769px) {
    .btn-whatsapp-large {
        padding: 1.5rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .btn-whatsapp-large {
        padding: 1.75rem;
    }
}

.btn-whatsapp-large:hover {
    background-color: #F3F4F6;
}

.btn-whatsapp-large .arrow-icon {
    transition: transform 0.3s ease;
}

.btn-whatsapp-large:hover .arrow-icon {
    transform: translateX(4px);
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-phone a {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

@media (min-width: 769px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.info-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 769px) {
    .info-card {
        padding: 1.5rem;
    }
}

.info-card:hover {
    box-shadow: var(--shadow-medium);
}

.info-icon {
    background-color: rgba(252, 103, 0, 0.2);
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.info-card:hover .info-icon {
    background-color: rgba(252, 103, 0, 0.3);
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.info-text {
    color: var(--foreground);
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.9375rem;
}

@media (min-width: 769px) {
    .info-text {
        font-size: 1rem;
    }
}

.info-link {
    color: var(--foreground);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

@media (min-width: 769px) {
    .info-link {
        font-size: 1rem;
    }
}

.info-link:hover {
    color: var(--primary);
}

.info-link .arrow-icon {
    transition: transform 0.3s ease;
}

.info-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background-color: #FFFFFF;
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 769px) {
    .footer {
        padding: 2rem 0;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 769px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }
}

.footer-left {
    text-align: center;
}

@media (min-width: 769px) {
    .footer-left {
        text-align: left;
    }
}

.footer-left img {
    height: 3.5rem;
    width: auto;
    margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
    .footer-left img {
        height: 4rem;
        margin-bottom: 0.75rem;
    }
}

.footer-left p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-right {
        align-items: flex-end;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: #E55D00;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    box-shadow: var(--shadow-orange);
    cursor: pointer;
    z-index: 50;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    padding: 0;
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        height: 4rem;
        width: 4rem;
    }
}

.whatsapp-float:hover {
    animation: none;
    opacity: 0.9;
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

/* Icons */
.icon-whatsapp,
.icon-location,
.icon-phone {
    display: inline-block;
}

.icon-whatsapp {
    vertical-align: middle;
    margin-right: 0.25rem;
}

svg.icon-whatsapp {
    display: inline-block;
    vertical-align: middle;
}

.btn-cta svg.icon-whatsapp,
.btn-whatsapp-large svg.icon-whatsapp {
    stroke: currentColor;
}

.footer-phone svg.icon-whatsapp {
    stroke: currentColor;
}

svg.icon-phone {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    stroke: currentColor;
}

.contact-phone svg.icon-phone {
    stroke: currentColor;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    /* Remove spacing from hero and align with header */
    .hero {
        margin-top: 58px;
        padding-top: 0;
        height: 35vh;
        min-height: 250px;
        max-height: 350px;
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Remove header border on mobile to eliminate gap */
    .header {
        border-bottom: none;
    }

    /* Reduce spacing between hero and equipment section */
    .section-equipments {
        margin-top: 0;
    }

    .section-equipments .container {
        padding-top: 0;
    }

    .section-equipments .section-header {
        padding-top: 0;
        margin-bottom: 1rem;
    }

    .section-equipments .section-header h2 {
        margin-bottom: 0.5rem;
    }

    .about-badge {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }

    /* Adjust line breaks for better mobile readability in titles */
    .section-header h2 br,
    .contact-header h2 br {
        display: none;
    }

    /* Prevent horizontal scroll on mobile - but exclude hero */
    body > *:not(.hero) {
        max-width: 100%;
    }

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